src/pages/404.astro 592 B raw
1
---
2
import PageLayout from "@/layouts/Base";
3
import { Image } from "@astrojs/image/components";
4
import img from "../assets/512x512.png";
5
6
const meta = {
7
	title: "Oops! You found a missing page!",
8
	description: "Oops! It looks like this page is lost in space!",
9
};
10
---
11
12
<PageLayout meta={meta}>
13
	<h1 class="title mb-6">404 | Oops something went wrong</h1>
14
	<p class="mb-8">Please use the navigation to find your way back</p>
15
	<div class="my-4 grid justify-center">
16
		<Image
17
			src={img}
18
			alt="A cartoon cactus looking at the 'Astro.build' logo"
19
			loading="eager"
20
		/>
21
	</div>
22
</PageLayout>