Files
lua.re/src/pages/index.astro
luaneko 12947e0241
All checks were successful
Deploy website / deploy (push) Successful in 13s
Remove umami link from frontpage
2024-12-04 14:48:33 +11:00

33 lines
883 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"],
];
const services = [
["Gitea", "git"],
["Roundcube", "mail"],
];
services.sort(([_a, a], [_b, b]) => a.length - b.length || a.localeCompare(b));
---
<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>
</>))}
{services.map(([name, sub,href], i) => (
<>{i ? " · " : ""}</><small><a href={href ?? `https://${sub}.lua.re/`} title={name}>{sub}</a></small>
))}
🍡 🌸 🎀 🌙</pre>
</Layout>