the horrors

This commit is contained in:
Laker Turner 2025-03-17 12:49:54 +00:00
parent 0d9be3d002
commit 4245370f61
No known key found for this signature in database
48 changed files with 2513 additions and 265 deletions

14
src/pages/404.astro Normal file
View file

@ -0,0 +1,14 @@
---
import Layout from "~/layouts/Base.astro";
import Header from "~/components/ui/Header.astro";
import Footer from "~/components/ui/Footer.astro";
---
<Layout title="404" description="Page not found" icon="fa-solid fa-ghost">
<Header />
<main class="border-l-5 border-light-pu dark:border-dark-pu pl-4">
<h2 class="text-2xl font-bold">404</h2>
<p class="text-lg">Page not found</p>
</main>
<Footer />
</Layout>