src/pages/404.astro 538 B raw
1
---
2
import PageLayout from "@/layouts/Base.astro";
3
import { Image } from "astro:assets";
4
5
const meta = {
6
	title: "Oops! You found a missing page!",
7
	description: "Oops! It looks like this page is lost in space!",
8
};
9
---
10
11
<PageLayout meta={meta}>
12
	<h1 class="title mb-6">404 | Oops something went wrong</h1>
13
	<p class="mb-8">Please use the navigation to find your way back</p>
14
	<div class="my-4 grid justify-center">
15
		<Image src="/icon.png" width={256} height={256} alt="stevedylan.dev site logo" loading="eager" />
16
	</div>
17
</PageLayout>