lua.re/src/pages/index.astro
2024-11-12 19:00:41 +11:00

24 lines
587 B
Plaintext

---
import Layout from "../layouts/index.astro";
const socials = [
["Bluesky", "bs/lua.re", "https://bsky.app/profile/lua.re"],
["GitHub", "gh/luaneko", "https://github.com/luaneko"],
];
---
<Layout>
<pre
class="max-w-prose mx-auto p-4 sm:p-8 leading-tight">{
` โˆง.,,โˆง ๐œ—๐œš
( ฬณโ€ข ยท โ€ข ฬณ) แญข
/ ใฅ `}<a href="mailto:lumi@lua.re" class="font-serif"><em><strong>lumi</strong>@lua.re</em></a> โ‚Šหš.โ‹†โบโ‚Š
{socials.map(([name, text, href]) => (
<>ใƒป:ใ€‚<small><a href={href} title={name}>{text}</a></small>
</>
))}
๐Ÿก ๐ŸŒธ ๐ŸŽ€ ๐ŸŒ™</pre>
</Layout>