blob: a34ff13795409567bb43987428ce554b58160d54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
import Page from "@layouts/Page.astro";
import { Image } from "@astrojs/image/components";
const title = "404!";
const description = title;
---
<Page title={title} description={description}>
<h1>404! :(</h1>
<Image
src="/imgs/tapwater.png"
width={500}
height={515}
class="mx-auto"
format="webp"
quality={90}
decoding="async"
alt="can i get you some tapwater?"
/>
</Page>
|