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