From 08599cc7d573c2c30778850c5e16c8ca7fe75f3a Mon Sep 17 00:00:00 2001 From: ayoayco Date: Fri, 30 Aug 2024 09:21:08 +0200 Subject: [PATCH] a11y: footer spacing --- src/components/Footer.astro | 60 ++++++++++++++----------------------- 1 file changed, 22 insertions(+), 38 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index c92b4d4..479befe 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,15 +1,7 @@ --- const year = new Date().getFullYear(); -const leftLinks = [ - { - text: 'Ayo\'s Blog', - url: 'https://ayos.blog' - }, - { - text: 'Ayco Social', - url: 'https://social.ayco.io' - }, - { +const links = [ + { text: 'GitHub', url: 'https://github.com/ayoayco' }, @@ -17,9 +9,6 @@ const leftLinks = [ text: 'SourceHut', url: 'https://sr.ht/~ayoayco' }, -] - -const rightLinks = [ { text: 'LinkedIn', url: 'https://www.linkedin.com/in/ayoayco' @@ -44,47 +33,42 @@ const rightLinks = [ text: 'Web Tools', url: 'https://m.webtoo.ls/@ayo' }, + { + text: 'Ayco Social', + url: 'https://social.ayco.io' + }, ] ---