From 6041b89e37567eebfac035c96d659454d42f5b27 Mon Sep 17 00:00:00 2001 From: J M Rossy Date: Wed, 20 Nov 2024 17:52:18 -0500 Subject: [PATCH] Fix footer issues from merge conflicts --- src/components/nav/Footer.tsx | 40 ++++++++++++++++++++--------------- yarn.lock | 2 +- 2 files changed, 24 insertions(+), 18 deletions(-) diff --git a/src/components/nav/Footer.tsx b/src/components/nav/Footer.tsx index a4fd1e2d..3adb8e14 100644 --- a/src/components/nav/Footer.tsx +++ b/src/components/nav/Footer.tsx @@ -14,21 +14,31 @@ type FooterLink = { const footerLinks: FooterLink[] = [ { title: 'Homepage', url: links.home, external: true }, - { title: 'INJ Explorer', url: links.explorerInj, external: true }, - { title: 'inEVM Explorer', url: links.explorerInEvm, external: true }, { title: 'Support', url: links.support, external: true }, + { + title: 'Twitter', + url: links.twitter, + external: true, + icon: , + }, + { title: 'INJ Explorer', url: links.explorerInj, external: true }, { title: 'About', url: links.about, external: true }, + { + title: 'Discord', + url: links.discord, + external: true, + icon: , + }, + { title: 'inEVM Explorer', url: links.explorerInEvm, external: true }, { title: 'Docs', url: links.docs, external: true }, - { title: 'Twitter', url: links.twitter, external: true, icon: }, - { title: 'Discord', url: links.discord, external: true, icon: }, - { title: 'Github', url: links.github, external: true, icon: }, + { title: 'Github', url: links.github, external: true, icon: }, ]; export function Footer() { return ( -