@@ -5,8 +5,9 @@ import { Container } from '@/components/Container'
55import { Logo } from '@/components/Logo'
66import { NavLink } from '@/components/NavLink'
77
8- import DiscordLogo from '@/images/logos/discord.svg'
9- import GitHubLogo from '@/images/logos/github.svg'
8+ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
9+ import { faXTwitter , faDiscord , faGithub , faLinkedinIn } from '@fortawesome/free-brands-svg-icons'
10+
1011import WeMakeDevs from '@/images/logos/WeMakeDevs.jpg'
1112import ContentCreators4Cs from '@/images/logos/ContentCreators4Cs.jpg'
1213
@@ -65,24 +66,28 @@ export function Footer() {
6566 className = "group"
6667 aria-label = "EddieHub on Discord"
6768 >
68- < Image
69- src = { DiscordLogo }
70- width = "30"
71- height = "30"
72- alt = "Discord logo"
73- />
69+ < FontAwesomeIcon icon = { faDiscord } size = 'xl' />
7470 </ Link >
7571 < Link
7672 href = "https://github.com/EddieHubCommunity"
7773 className = "group"
7874 aria-label = "EddieHub on GitHub"
7975 >
80- < Image
81- src = { GitHubLogo }
82- width = "30"
83- height = "30"
84- alt = "GitHub logo"
85- />
76+ < FontAwesomeIcon icon = { faGithub } size = 'xl' />
77+ </ Link >
78+ < Link
79+ href = "https://twitter.com/eddiejaoude"
80+ className = "group"
81+ aria-label = "EddieHub on Twitter"
82+ >
83+ < FontAwesomeIcon icon = { faXTwitter } size = 'xl' />
84+ </ Link >
85+ < Link
86+ href = "https://www.linkedin.com/company/eddiehub/"
87+ className = "group"
88+ aria-label = "EddieHub on LinkedIn"
89+ >
90+ < FontAwesomeIcon icon = { faLinkedinIn } size = 'xl' />
8691 </ Link >
8792 </ div >
8893 < p className = "mt-6 text-sm text-slate-500 sm:mt-0" >
0 commit comments