diff options
Diffstat (limited to 'src/pages/404.astro')
| -rw-r--r-- | src/pages/404.astro | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/pages/404.astro b/src/pages/404.astro new file mode 100644 index 0000000..a34ff13 --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,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> |
