Add error page and update styles

This commit is contained in:
thiloho
2023-05-20 21:44:02 +02:00
parent 96975794f5
commit a3334ab45e
4 changed files with 82 additions and 0 deletions

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

@@ -0,0 +1,9 @@
---
import PageLayout from "../layouts/PageLayout.astro";
const description = "Oops! We could not find the page you are looking for. It seems like the content you are seeking has taken a detour or is temporarily unavailable."
---
<PageLayout title="404 - Page not found" {description}>
<p>{description}</p>
</PageLayout>