-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Add 404 page
1 parent
6952756
commit 8916f6c
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
import BackOnTrackLayout from "../layouts/BackOnTrackLayout.astro"; | ||
--- | ||
|
||
<BackOnTrackLayout title="404 Not Found"> | ||
<div | ||
class="flex h-full flex-grow flex-col items-center justify-start gap-10 p-5" | ||
> | ||
<h1 | ||
class="p-2 text-center text-3xl font-extrabold text-bot-blue md:text-6xl" | ||
> | ||
404 Not Found | ||
</h1> | ||
<p class="max-w-xl text-center text-lg"> | ||
The page you requested could not be found.<br /><br /> | ||
<a href="/" class="underline">Click here to return to home.</a> | ||
</p> | ||
</div> | ||
</BackOnTrackLayout> |