tobias/center_404
Leif Niemczik 2022-11-30 16:30:59 +01:00
parent e809b7ea9e
commit 50dba42879
2 changed files with 14 additions and 0 deletions

BIN
public/404.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

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

@ -0,0 +1,14 @@
---
import Layout from '../layouts/Layout.astro'
---
<Layout title='Page not found'>
<main>
<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>It seems the squirrels got to the cable again.</p>
</main>
</Layout>