@@ -6,13 +6,16 @@ import cn from 'classnames';
66import * as css from './Footer.module.css' ;
77
88import Logo from '../images/logo.svg' ;
9- import Github from '../images/github.svg' ;
10- import Twitch from '../images/twitch.svg' ;
11- import Nebula from '../images/nebula.svg' ;
12- import Twitter from '../images/twitter.svg' ;
13- import Discord from '../images/discord.svg' ;
14- import Youtube from '../images/youtube.svg' ;
15- import Instagram from '../images/instagram.svg' ;
9+
10+ import {
11+ FaGithub ,
12+ FaTwitch ,
13+ FaTwitter ,
14+ FaDiscord ,
15+ FaYoutube ,
16+ FaInstagram
17+ } from 'react-icons/fa6' ;
18+ import { IoStarSharp } from 'react-icons/io5' ;
1619
1720import { cols } from '../styles/styles.module.css' ;
1821
@@ -83,28 +86,28 @@ const Footer = () => {
8386 < a
8487 href = "https://www.youtube.com/c/TheCodingTrain/"
8588 aria-label = "Youtube" >
86- < Youtube width = { 30 } />
89+ < FaYoutube size = { 30 } />
8790 < span > Youtube</ span >
8891 </ a >
8992 </ li >
9093 < li >
9194 < a
9295 href = "https://www.twitch.tv/codingtrainchoochoo"
9396 aria-label = "Twitch" >
94- < Twitch width = { 30 } />
97+ < FaTwitch size = { 30 } />
9598 < span > Twitch</ span >
9699 </ a >
97100 </ li >
98101
99102 < li >
100103 < a href = "https://nebula.tv/codingtrain" aria-label = "Nebula" >
101- < Nebula width = { 30 } />
104+ < IoStarSharp size = { 30 } style = { { transform : 'scaleY(-1)' } } />
102105 < span > Nebula</ span >
103106 </ a >
104107 </ li >
105108 < li >
106109 < a href = "https://twitter.com/thecodingtrain" aria-label = "Twitter" >
107- < Twitter width = { 30 } />
110+ < FaTwitter size = { 30 } />
108111 < span > Twitter</ span >
109112 </ a >
110113 </ li >
@@ -113,19 +116,19 @@ const Footer = () => {
113116 < a
114117 href = "https://www.instagram.com/the.coding.train/"
115118 aria-label = "Instagram" >
116- < Instagram width = { 30 } />
119+ < FaInstagram size = { 30 } />
117120 < span > Instagram</ span >
118121 </ a >
119122 </ li >
120123 < li >
121124 < a href = "https://thecodingtrain.com/discord" aria-label = "Discord" >
122- < Discord width = { 30 } />
125+ < FaDiscord size = { 30 } />
123126 < span > Discord</ span >
124127 </ a >
125128 </ li >
126129 < li >
127130 < a href = "https://github.com/CodingTrain" aria-label = "GitHub" >
128- < Github width = { 30 } />
131+ < FaGithub size = { 30 } />
129132 < span > GitHub</ span >
130133 </ a >
131134 </ li >
0 commit comments