summaryrefslogtreecommitdiff
path: root/src/pages/index.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/index.astro
parentcb58a18f0f32cce04d13cf2d10b33d7721eebe1e (diff)
add 404/sitemap/robots.txt + improve random stuff
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r--src/pages/index.astro10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index cbf7d69..019375f 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -1,6 +1,6 @@
---
import Index from "@layouts/Index.astro";
-import "@styles/global.sass";
+import { Image } from "@astrojs/image/components";
const title = "guzzle guzzle";
const description = title;
---
@@ -15,13 +15,17 @@ const description = title;
<p>this is under construction. i'm experimenting with astro</p>
- <img
+ <Image
src="/imgs/gifs/obras.gif"
+ width={106}
+ height={119}
class="mx-auto"
+ format="webp"
+ quality={90}
loading="lazy"
decoding="async"
alt="construction"
/>
- <a href="/lul">click here</a>
+ <a href="/lul">hehe funny click me</a>
</Index>