My personal site hosted @ https://indexx.dev
1---
2import Bluesky from "./icons/Bluesky.astro";
3import Discord from "./icons/Discord.astro";
4import Github from "./icons/Github.astro";
5import Lastfm from "./icons/Lastfm.astro";
6import Mastodon from "./icons/Mastodon.astro";
7import SocialLink from "./SocialLink.astro";
8
9const links = [
10 {
11 icon: Bluesky,
12 name: "Bluesky",
13 href: "https://bsky.app/profile/did:plc:sfjxpxxyvewb2zlxwoz2vduw",
14 },
15 {
16 icon: Discord,
17 name: "Discord",
18 href: "https://discord.com/users/589386198011871233",
19 tooltip: {
20 title: "index.lua",
21 placement: "top",
22 },
23 },
24 {
25 icon: Github,
26 name: "GitHub",
27 href: "https://github.com/indexxing/",
28 },
29 {
30 icon: Mastodon,
31 name: "Mastodon",
32 href: "https://mastodon.social/@indexcard",
33 },
34 {
35 icon: Lastfm,
36 name: "last.fm",
37 href: "https://last.fm/user/Index_Card",
38 },
39];
40---
41
42<ul
43 class="d-flex mt-4 mb-3"
44 style="padding: 0px; width: 50%; margin: auto; justify-content: space-evenly; flex-basis: 33%;"
45>
46 {links.map((link) => <SocialLink {...link} />)}
47</ul>