Skip to content

Commit 420e2b5

Browse files
committed
swap social icons in about page for the react-icons set to match footer
1 parent 97e1425 commit 420e2b5

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

src/pages/about.js

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,22 @@ import RainbowCharacter from '../images/characters/Rainbow_1.mini.svg';
1717
import ChooChooCharacter from '../images/characters/ChooChooBot_1.mini.svg';
1818
import TriangleCharacter from '../images/characters/Triangle_3.mini.svg';
1919

20-
import Github from '../images/github.svg';
21-
import Twitter from '../images/twitter.svg';
22-
import YouTube from '../images/youtube.svg';
23-
import Discord from '../images/discord.svg';
24-
import Instagram from '../images/instagram.svg';
20+
import {
21+
FaGithub,
22+
FaTwitter,
23+
FaDiscord,
24+
FaYoutube,
25+
FaInstagram
26+
} from 'react-icons/fa6';
2527

2628
import * as css from '../styles/pages/about.module.css';
2729

2830
const socialIcons = {
29-
twitter: () => <Twitter className={css.socialIcon} />,
30-
discord: () => <Discord className={css.socialIcon} />,
31-
instagram: () => <Instagram className={css.socialIcon} />,
32-
youtube: () => <YouTube className={css.socialIcon} />,
33-
github: () => <Github className={css.socialIcon} />
31+
twitter: () => <FaTwitter className={css.socialIcon} size={30} />,
32+
discord: () => <FaDiscord className={css.socialIcon} size={30} />,
33+
instagram: () => <FaInstagram className={css.socialIcon} size={30} />,
34+
youtube: () => <FaYoutube className={css.socialIcon} size={30} />,
35+
github: () => <FaGithub className={css.socialIcon} size={30} />
3436
};
3537

3638
const SocialIcon = ({ site }) => {

0 commit comments

Comments
 (0)