feat(footer): show more social links; add forgejo

This commit is contained in:
Ayo Ayco 2025-08-19 16:28:03 +02:00
parent e37836dd07
commit 17e33c9659
2 changed files with 21 additions and 6 deletions

View file

@ -32,8 +32,8 @@ const year = new Date().getFullYear()
aria-label={linkObj.text}
>
<Icon
width="1.5em"
height="1.5em"
width="1em"
height="1em"
name={`${linkObj.set ?? 'simple-icons'}:${linkObj.icon}`}
/>
</a>

View file

@ -40,14 +40,24 @@ export const links: Link[] = [
export default links
export const footerLinks: Link[] = [
{
text: "Ayo's Forge",
url: 'https://git.ayo.run/ayo/',
icon: 'git',
},
{
text: 'SourceHut',
url: 'https://ayco.io/sh/',
icon: 'sourcehut',
},
{
text: 'GitHub',
url: 'https://ayco.io/gh',
icon: 'github',
},
{
text: 'Mastodon',
url: 'https://yolk.ayo.run/https://social.ayco.io/public/local',
url: 'https://social.ayco.io/public/local',
icon: 'mastodon',
},
{
@ -56,9 +66,14 @@ export const footerLinks: Link[] = [
icon: 'pixelfed',
},
{
text: 'GitHub',
url: 'https://ayco.io/gh',
icon: 'github',
text: 'Bluesky',
url: 'http://bsky.app/profile/ayco.io',
icon: 'bluesky',
},
{
text: 'LinkedIn',
url: 'https://www.linkedin.com/in/ayoayco/',
icon: 'linkedin',
},
]