This commit is contained in:
parent
928530f64b
commit
c52af0ede2
@ -5,6 +5,13 @@ 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>
|
||||
@ -16,7 +23,9 @@ const socials = [
|
||||
|
||||
{socials.map(([name, text, href]) => (
|
||||
<>・:。<small><a href={href} title={name}>{text}</a></small>
|
||||
</>
|
||||
</>))}
|
||||
{services.map(([name, sub], i) => (
|
||||
<>{i ? " · " : ""}</><small><a href={`https://${sub}.lua.re/`} title={name}>{sub}</a></small>
|
||||
))}
|
||||
|
||||
🍡 🌸 🎀 🌙</pre>
|
||||
|
Loading…
Reference in New Issue
Block a user