updated 404 page

Signed-off-by: Ash Entwisle <ash.entwisle@protonmail.com>
issue/index
Ash Entwisle 2023-09-18 16:52:59 +00:00
parent 350a8936d9
commit 960d587436
No known key found for this signature in database
GPG Key ID: 0E3CBB6B4BE9FE33
2 changed files with 17 additions and 0 deletions

View File

17
src/pages/[...any].astro Normal file
View File

@ -0,0 +1,17 @@
---
import Error from "../components/Error.astro";
import Boilerplate from "../layouts/Boilerplate.astro";
const keywords: string[] = []
---
<Boilerplate title="404" description="Page not found" keywords={keywords}>
<div class="error">
<h1>404</h1>
<p>Page not found</p>
<p>
Sorry, the page `<code>https://hullcss.org/{Astro.url}</code>` does not exist,
Click <a href="/">here</a> to go back to the homepage.
</p>
</div>
</Boilerplate>