add home and handle 404 page not found

This commit is contained in:
arifal
2025-01-17 02:29:52 +07:00
parent 84d8f3ca6a
commit 4de7067487
16 changed files with 1046 additions and 289 deletions

View File

@@ -17,11 +17,11 @@ class="authentication-bg"
<div class="p-4">
<div class="mx-auto mb-4 text-center">
<div class="mx-auto text-center auth-logo">
<a href="{{ route('any', 'index') }}" class="logo-dark">
<a href="{{ route('home') }}" class="logo-dark">
<img src="/images/logo-dark.png" height="32" alt="logo dark">
</a>
<a href="{{ route('any', 'index') }}" class="logo-light">
<a href="{{ route('home') }}" class="logo-light">
<img src="/images/logo-light.png" height="28" alt="logo light">
</a>
</div>
@@ -32,7 +32,7 @@ class="authentication-bg"
<p class="text-muted mt-1 mb-4">The page you're trying to reach seems to have gone <br /> missing in the digital wilderness.</p>
<div class="text-center">
<a href="{{ route('any', 'index') }}" class="btn btn-danger">Back to Home</a>
<a href="{{ route('home') }}" class="btn btn-danger">Back to Home</a>
</div>
</div>
</div>