blob: cbf7d69dff699888919d5a76a908b6e3f3a96ff9 (
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
|
---
import Index from "@layouts/Index.astro";
import "@styles/global.sass";
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>
<img
src="/imgs/gifs/obras.gif"
class="mx-auto"
loading="lazy"
decoding="async"
alt="construction"
/>
<a href="/lul">click here</a>
</Index>
|