mirror of
https://github.com/Motschen/midnightdust-eu.git
synced 2025-12-13 09:25:10 +01:00
18 lines
461 B
Plaintext
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>
|