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' + }, +] ---