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} aria-label={linkObj.text}
> >
<Icon <Icon
width="1.5em" width="1em"
height="1.5em" height="1em"
name={`${linkObj.set ?? 'simple-icons'}:${linkObj.icon}`} name={`${linkObj.set ?? 'simple-icons'}:${linkObj.icon}`}
/> />
</a> </a>

View file

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