24 lines
587 B
Plaintext
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>
|