ivy.rs/src/pages/404.astro
2025-03-17 12:49:54 +00:00

14 lines
430 B
Text

---
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>