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