summaryrefslogtreecommitdiff
path: root/src/pages/404.astro
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-24 06:17:46 -0400
committerseth <[email protected]>2023-05-24 06:17:46 -0400
commite23620d10a5fb27f613e5b71cb0627fb1c4076b3 (patch)
tree4b131eda41481bfc922fb86545c92f2c270496c2 /src/pages/404.astro
parentcb58a18f0f32cce04d13cf2d10b33d7721eebe1e (diff)
add 404/sitemap/robots.txt + improve random stuff
Diffstat (limited to 'src/pages/404.astro')
-rw-r--r--src/pages/404.astro20
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>