the horrors
This commit is contained in:
parent
0d9be3d002
commit
4245370f61
48 changed files with 2513 additions and 265 deletions
14
src/pages/404.astro
Normal file
14
src/pages/404.astro
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue