summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/404.blade.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/404.blade.php b/source/404.blade.php
index bd4a5c3..9fd5700 100644
--- a/source/404.blade.php
+++ b/source/404.blade.php
@@ -1,5 +1,9 @@
@extends('_layouts.master')
@section('article')
- TODO
+ <div class="bg-gray-700 rounded-lg p-6">
+ <h1 class="text-green-300 text-3xl font-bold">Page not found</h1>
+ <p>Looks like you've followed a broken link or entered a URL that doesn't exist on this site.</p>
+ <a href="/">&lt;&lt; Back to the site</a>
+ </div>
@endsection