Files
midnightdust-eu/src/pages/404.astro
Martin Prokoph dbd4e1e2e1 Initial commit
2024-02-07 17:31:28 +01:00

18 lines
461 B
Plaintext

---
import DefaultLayout from '../layouts/DefaultLayout.astro'
---
<DefaultLayout title="404">
<section class="my-12">
<div class="container">
<h1>404</h1>
</div>
</section>
<section class="my-12">
<div class="space-content container">
<p class="text-2xl">This page does not exist. Don't worry though, we got you.</p>
<a class="button" href="/">Let's get you home Astronout 🚀</a>
</div>
</section>
</DefaultLayout>