My personal site hosted @ https://indexx.dev
1---
2import Bluesky from "./icons/Bluesky.astro";
3import Discord from "./icons/Discord.astro";
4import SocialLink from "./SocialLink.astro";
5import Tangled from "./icons/Tangled.astro";
6
7const links = [
8 {
9 icon: Bluesky,
10 name: "Bluesky",
11 href: "https://bsky.app/profile/did:plc:sfjxpxxyvewb2zlxwoz2vduw",
12 },
13 {
14 icon: Discord,
15 name: "Discord",
16 href: "https://discord.com/users/589386198011871233",
17 tooltip: {
18 title: "index.lua",
19 placement: "top",
20 },
21 },
22 {
23 icon: Tangled,
24 name: "Tangled",
25 href: "https://tangled.org/@indexx.dev",
26 },
27];
28---
29
30<ul
31 class="d-flex mt-3 mb-3"
32 style="padding: 0px; width: 50%; margin: auto; justify-content: center; gap: 20px;"
33>
34 {links.map((link) => <SocialLink {...link} />)}
35</ul>