blob: 019375f5e21e3c611d28ad471b28d34908c5c29c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
---
import Index from "@layouts/Index.astro";
import { Image } from "@astrojs/image/components";
const title = "guzzle guzzle";
const description = title;
---
<Index title={title} description={description}>
<script src="../scripts/chrisApp.ts"></script>
<h1 class="bg-base w-fit h-fit mx-auto rounded p-5 text-text">
<b>getchoo's website 🚀</b>
</h1>
<br />
<p>this is under construction. i'm experimenting with astro</p>
<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">hehe funny click me</a>
</Index>
|