Add 404 page

This commit is contained in:
Mikkel Svartveit 2023-10-15 17:37:16 -07:00
parent 18d0ef1e76
commit 681581633e

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

@ -0,0 +1,16 @@
---
import Paragraph from "../components/Paragraph.astro";
import RootLayout from "../layouts/RootLayout.astro";
---
<RootLayout title="Mikkel Svartveit">
<section class="mx-auto max-w-4xl px-3 pb-8 pt-12 sm:px-6">
<h1
class="mb-8 text-center font-serif text-3xl font-light tracking-wide text-gray-600 sm:text-4xl"
>
404 Not Found
</h1>
<Paragraph class="text-center">That's an error.</Paragraph>
</section>
</RootLayout>