@@ -6,13 +6,16 @@ import cn from 'classnames';
6
6
import * as css from './Footer.module.css' ;
7
7
8
8
import 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' ;
16
19
17
20
import { cols } from '../styles/styles.module.css' ;
18
21
@@ -83,28 +86,28 @@ const Footer = () => {
83
86
< a
84
87
href = "https://www.youtube.com/c/TheCodingTrain/"
85
88
aria-label = "Youtube" >
86
- < Youtube width = { 30 } />
89
+ < FaYoutube size = { 30 } />
87
90
< span > Youtube</ span >
88
91
</ a >
89
92
</ li >
90
93
< li >
91
94
< a
92
95
href = "https://www.twitch.tv/codingtrainchoochoo"
93
96
aria-label = "Twitch" >
94
- < Twitch width = { 30 } />
97
+ < FaTwitch size = { 30 } />
95
98
< span > Twitch</ span >
96
99
</ a >
97
100
</ li >
98
101
99
102
< li >
100
103
< a href = "https://nebula.tv/codingtrain" aria-label = "Nebula" >
101
- < Nebula width = { 30 } />
104
+ < IoStarSharp size = { 30 } style = { { transform : 'scaleY(-1)' } } />
102
105
< span > Nebula</ span >
103
106
</ a >
104
107
</ li >
105
108
< li >
106
109
< a href = "https://twitter.com/thecodingtrain" aria-label = "Twitter" >
107
- < Twitter width = { 30 } />
110
+ < FaTwitter size = { 30 } />
108
111
< span > Twitter</ span >
109
112
</ a >
110
113
</ li >
@@ -113,19 +116,19 @@ const Footer = () => {
113
116
< a
114
117
href = "https://www.instagram.com/the.coding.train/"
115
118
aria-label = "Instagram" >
116
- < Instagram width = { 30 } />
119
+ < FaInstagram size = { 30 } />
117
120
< span > Instagram</ span >
118
121
</ a >
119
122
</ li >
120
123
< li >
121
124
< a href = "https://thecodingtrain.com/discord" aria-label = "Discord" >
122
- < Discord width = { 30 } />
125
+ < FaDiscord size = { 30 } />
123
126
< span > Discord</ span >
124
127
</ a >
125
128
</ li >
126
129
< li >
127
130
< a href = "https://github.com/CodingTrain" aria-label = "GitHub" >
128
- < Github width = { 30 } />
131
+ < FaGithub size = { 30 } />
129
132
< span > GitHub</ span >
130
133
</ a >
131
134
</ li >
0 commit comments