summaryrefslogtreecommitdiff
path: root/source/404.blade.php
blob: 4f1b6a356a774da54073f2d570e332099c7d826d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@extends('_layouts.master')

@section('body')
    <div class="flex flex-col items-center text-gray-700 mt-32">
        <h1 class="text-6xl font-light leading-none mb-2">404</h1>

        <h2 class="text-3xl">Page not found.</h2>

        <hr class="block w-full max-w-sm mx-auto border my-8">

        <p class="text-xl">
            Need to update this page? See the <a title="404 Page Documentation" href="https://jigsaw.tighten.co/docs/custom-404-page/">Jigsaw documentation</a>.
        </p>
    </div>
@endsection