Initial commit

This commit is contained in:
Martin Prokoph
2024-02-07 17:31:28 +01:00
committed by GitHub
commit dbd4e1e2e1
58 changed files with 12225 additions and 0 deletions

17
src/pages/404.astro Normal file
View File

@@ -0,0 +1,17 @@
---
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>