www.hip-berlin.de/src/pages/404.astro

35 lines
622 B
Plaintext

---
import Layout from '../layouts/Layout.astro'
---
<Layout title='Page not found'>
<main>
<div class="figure">
<img
src='/404.gif'
alt='Pixel art of a squirrel with 2 halves of a fiber cable that were chewed in half. Cable and small lightning strikes flashing'
/>
<h1>Page not found</h1>
<p>Looks like the squirrels got the fiber again</p>
</div>
</main>
</Layout>
<style>
figure,
p {
margin-bottom: 10rem;
text-align: center;
}
img {
margin-top: 5rem;
width: 50%;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}
h1 {
text-align: center;
}
</style>