blob: c1279160d183e80fe84ffcb5bb51dd9a1c3e43df (
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 type="module" src="/js/chrisApp.js"></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>
|