diff options
| author | seth <[email protected]> | 2024-02-12 20:29:15 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-13 00:24:08 -0500 |
| commit | 2cbc22348ef038181e1dc89635a3be005604a4ca (patch) | |
| tree | 33a33ffe0203b730078d01c5d7d3951239619ca9 /src/pages | |
| parent | 05780c6b2d8b184122a32095c50363a6c8617d64 (diff) | |
back to astro
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/404.mdx | 18 | ||||
| -rw-r--r-- | src/pages/index.mdx | 18 | ||||
| -rw-r--r-- | src/pages/lul.mdx | 9 |
3 files changed, 45 insertions, 0 deletions
diff --git a/src/pages/404.mdx b/src/pages/404.mdx new file mode 100644 index 0000000..4cf7cf6 --- /dev/null +++ b/src/pages/404.mdx @@ -0,0 +1,18 @@ +--- +layout: ../layouts/Page.astro +title: 404 +description: Page not found! +--- + +import Picture from "astro/components/Picture.astro"; +import tapwater from "@assets/imgs/tapwater.png"; + +<div class="space-y-5"> + # 404! :( + <Picture + src={tapwater} + formats={["avif", "webp"]} + alt="Can i get you some tapwater?" + class="p-5" + /> +</div> diff --git a/src/pages/index.mdx b/src/pages/index.mdx new file mode 100644 index 0000000..e8aae92 --- /dev/null +++ b/src/pages/index.mdx @@ -0,0 +1,18 @@ +--- +layout: ../layouts/Page.astro +title: guzzle guzzle +description: guzzle guzzle +--- + +import Picture from "astro/components/Picture.astro"; +import obras from "@assets/gifs/obras.gif"; + +<a hidden rel="me" href="https://wetdry.world/@getchoo"> + my mastodon account +</a> + +this is under construction. i'm experimenting with astro + +<Picture src={obras} alt="Under construction" formats={["gif"]} class="m-10" /> + +[hehe funny click me](/lul) diff --git a/src/pages/lul.mdx b/src/pages/lul.mdx new file mode 100644 index 0000000..bc142f9 --- /dev/null +++ b/src/pages/lul.mdx @@ -0,0 +1,9 @@ +--- +layout: ../layouts/Page.astro +title: fard +description: xd +--- + +<video width="1280" height="720" controls autoplay muted> + <source src="/files/rickroll.mp4" type="video/mp4" /> +</video> |
