From b15582fc159dbe5ae5556a75f02a6b9f292b2311 Mon Sep 17 00:00:00 2001 From: ayoayco Date: Wed, 24 Jul 2024 10:44:19 +0200 Subject: [PATCH] feat: external profiles links for verification --- src/components/Footer.astro | 69 ++++++++++++++++++++++++++++++++----- 1 file changed, 61 insertions(+), 8 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 834f71d..48e1727 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,26 +1,79 @@ --- const year = new Date().getFullYear(); +const links = [ + { + text: 'Blog', + url: 'https://ayos.blog' + }, + { + text: 'Social', + url: 'https://social.ayco.io' + }, + { + text: 'GitHub', + url: 'https://github.com/ayoayco' + }, + { + text: 'SourceHut', + url: 'https://sr.ht/~ayoayco' + }, + { + text: 'LinkedIn', + url: 'https://www.linkedin.com/in/ayoayco' + }, + { + text: 'Photos', + url: 'https://metapixl.com/@ayo' + }, + { + text: 'SoundCloud', + url: 'https://SoundCloud.com/ayoayco' + }, + { + text: 'NPM', + url: 'https://www.npmjs.com/~aayco' + }, + { + text: 'Instagram', + url: 'https://instagram.com/ayoayco' + }, + { + text: 'Social Alt (Web Tools)', + url: 'https://m.webtoo.ls/@ayo' + }, +] ---