From 7c595d86591feeb5976b077f53a5a7c929bae91d Mon Sep 17 00:00:00 2001 From: ayoayco Date: Wed, 24 Jul 2024 19:18:01 +0200 Subject: [PATCH] style: split left & right footer sections --- src/components/Footer.astro | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 48e1727..64cb5d0 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,12 +1,12 @@ --- const year = new Date().getFullYear(); -const links = [ +const leftLinks = [ { - text: 'Blog', + text: 'Ayo\'s Blog', url: 'https://ayos.blog' }, { - text: 'Social', + text: 'Ayco Social', url: 'https://social.ayco.io' }, { @@ -17,6 +17,9 @@ const links = [ text: 'SourceHut', url: 'https://sr.ht/~ayoayco' }, +] + +const rightLinks = [ { text: 'LinkedIn', url: 'https://www.linkedin.com/in/ayoayco' @@ -38,7 +41,7 @@ const links = [ url: 'https://instagram.com/ayoayco' }, { - text: 'Social Alt (Web Tools)', + text: 'Web Tools', url: 'https://m.webtoo.ls/@ayo' }, ] @@ -46,13 +49,13 @@ const links = [