summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r--src/pages/index.astro21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
new file mode 100644
index 0000000..a17dcbe
--- /dev/null
+++ b/src/pages/index.astro
@@ -0,0 +1,21 @@
+---
+import { Image } from "astro:assets";
+
+import Base from "@layouts/Base.astro";
+import GifButtons from "@components/GifButtons.astro";
+import obras from "@assets/obras.gif";
+---
+
+<Base description="My home page">
+ <a hidden rel="me" href="https://wetdry.world/@getchoo">
+ My Mastodon account
+ </a>
+
+ <h1>Getchoo's website 🚀</h1>
+
+ <p>Constantly under construction since 2021!</p>
+
+ <Image src={obras} alt="Under construction" />
+
+ <GifButtons />
+</Base>