Skip to content

Commit d521385

Browse files
committed
Update footer links
1 parent 09acd61 commit d521385

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

src/components/shared/AppFooter.jsx

+19-8
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,37 @@
1-
import { FiGithub, FiTwitter, FiInstagram, FiBook } from 'react-icons/fi';
1+
import {
2+
FiGithub,
3+
FiTwitter,
4+
FiLinkedin,
5+
FiGlobe,
6+
FiYoutube,
7+
} from 'react-icons/fi';
28
import AppFooterCopyright from './AppFooterCopyright';
39

410
const socialLinks = [
511
{
612
id: 1,
13+
icon: <FiGlobe />,
14+
url: 'https://www.stoman.me/',
15+
},
16+
{
17+
id: 2,
718
icon: <FiGithub />,
819
url: 'https://github.com/realstoman',
920
},
1021
{
11-
id: 2,
22+
id: 3,
1223
icon: <FiTwitter />,
1324
url: 'https://twitter.com/realstoman',
1425
},
1526
{
16-
id: 3,
17-
icon: <FiBook />,
18-
url: 'https://stoman.medium.com',
27+
id: 4,
28+
icon: <FiLinkedin />,
29+
url: 'https://www.linkedin.com/in/realstoman',
1930
},
2031
{
21-
id: 4,
22-
icon: <FiInstagram />,
23-
url: 'https://instagram.com/realstoman',
32+
id: 5,
33+
icon: <FiYoutube />,
34+
url: 'https://www.youtube.com/c/realstoman',
2435
},
2536
];
2637

0 commit comments

Comments
 (0)