Files
lua.re/src/pages/index.astro
luaneko 089523d5b4
All checks were successful
Deploy website / deploy (push) Successful in 19s
Update layout
2025-08-11 18:46:16 +10:00

60 lines
1.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
import Layout from "@layouts/index.astro";
import Card from "@components/card.astro";
import Image from "@components/image.astro";
import miku from "@assets/miku.jpg";
import gato from "@assets/gato.jpg";
const links = {
git: { alt: "Git", href: "https://git.lua.re/" },
twt: { alt: "Twitter", href: "https://twitter.com/luanekos" },
mail: { alt: "Email", href: "mailto:lumi(at)lua.re" },
pgp: {
alt: "PGP Key",
href: "https://git.lua.re/luaneko/.profile/raw/branch/master/luaneko.pgp.pub",
},
// bsky: { alt: "Bluesky", href: "https://bsky.app/profile/lua.re" },
};
---
<Layout class="sm:max-h-screen">
<Card tag="main" class="space-y-3">
<h1 class="hidden"><a href="/" title="lua.re">lua.re</a></h1>
<pre>{
` ∧...∧ 𝜗𝜚
( ̳• · • ̳) ᭢
/ づ //// ⋆.⁺₊`
}</pre>
<p>
hi i'm luaneko ^^<br />
this is my site where i put a bunch of random stuff !<br />
</p>
<Image tag="p" src={miku} class="rounded-lg max-w-80" />
<pre>{
` へ
૮ - ՛ ) (˚ˎ 。7
/ ⁻ ៸| |、˜〵 ᢉ𐭩 p&g
乀(ˍ, ل ل じしˍ,)`
}</pre>
<p>i love cats they go miau miau<br /></p>
<Image tag="p" src={gato} class="block rounded-lg max-w-60" />
<p>best way to contact me is by twt or mail {`<3`}<br /></p>
</Card>
<footer class="flex flex-row space-x-1 mt-3 text-sm">
{
Object.entries(links).map(([name, { alt, href }], i) => [
i ? <span>·</span> : null,
<a href={href} title={alt} set:text={name} />,
])
}
</footer>
<script>
for (const link of document.querySelectorAll(`a[href^="mailto:"]`)) {
const href = link.attributes.getNamedItem("href")!;
href.value = href.value.replace("(at)", "@");
}
</script>
</Layout>