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---
23
24<ul class="d-flex mt-4 mb-1" style="padding: 0px; width: 50%; margin: auto; justify-content: space-evenly; flex-basis: 33%;">
25 {links.map(link => (
26 <SocialLink {...link} />
27 ))}
28</ul>