This commit is contained in:
MassiveBox 2025-03-17 17:43:53 +01:00
commit d6c414f887
Signed by: massivebox
GPG key ID: 9B74D3A59181947D
97 changed files with 17956 additions and 0 deletions

35
src/pages/404.astro Normal file
View file

@ -0,0 +1,35 @@
---
import Layout from "@layouts/Layout.astro";
import Header from "@components/Header.astro";
import Footer from "@components/Footer.astro";
import LinkButton from "@components/LinkButton.astro";
---
<Layout pageTitle="404 Not Found">
<Header />
<main id="main-content">
<div class="not-found-wrapper">
<h1 aria-label="404 Not Found" class="title is-1" style="font-size: 9rem;">404</h1>
<span aria-hidden="true" class="mb-3">¯\_(ツ)_/¯</span>
<p class="subtitle is-4">Page Not Found</p>
<LinkButton
href="/"
className="my-6 text-lg underline decoration-dashed underline-offset-8"
>
Go back home
</LinkButton>
</div>
</main>
<Footer />
</Layout>
<style>
.not-found-wrapper {
align-items: center;
justify-content: center;
display: flex;
flex-direction: column;
}
</style>