10 lines
229 B
Plaintext
10 lines
229 B
Plaintext
---
|
|
import Layout from "../layouts/Layout.astro"
|
|
import "@/styles/global.css"
|
|
---
|
|
|
|
<Layout title="404">
|
|
<h1 class="text-4xl font-bold text-center my-10">404</h1>
|
|
<p class="text-center">This page does not exist.</p>
|
|
</Layout>
|