mirror of
https://github.com/mikkelsvartveit/astro-personal-website.git
synced 2025-12-22 11:12:38 +00:00
Add 404 page
This commit is contained in:
parent
18d0ef1e76
commit
681581633e
1 changed files with 16 additions and 0 deletions
16
src/pages/404.astro
Normal file
16
src/pages/404.astro
Normal 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>
|
||||||
Loading…
Reference in a new issue