From 17e33c9659a1225a4d3e88e40c09f0c9c500a342 Mon Sep 17 00:00:00 2001 From: Ayo Date: Tue, 19 Aug 2025 16:28:03 +0200 Subject: [PATCH] feat(footer): show more social links; add forgejo --- src/components/Footer.astro | 4 ++-- src/constants/links.ts | 23 +++++++++++++++++++---- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 91535fb..226b4ad 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -32,8 +32,8 @@ const year = new Date().getFullYear() aria-label={linkObj.text} > diff --git a/src/constants/links.ts b/src/constants/links.ts index ecabe4c..d81a0d9 100644 --- a/src/constants/links.ts +++ b/src/constants/links.ts @@ -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', }, ]