Skip to content

Commit 39e591e

Browse files
fix : #1442 added instargam and linkedin icons to the footer (#1446)
Co-authored-by: Priyankar Pal <[email protected]>
1 parent 6949dc8 commit 39e591e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/common/footer/ExtendedFooter.jsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { MdManageSearch } from 'react-icons/md';
44
import { FaDiscord } from 'react-icons/fa';
55
import { BsGithub } from 'react-icons/bs';
66
import { FaXTwitter } from 'react-icons/fa6';
7+
import { FaLinkedin } from 'react-icons/fa';
8+
import { FaInstagram } from 'react-icons/fa6';
79
import LogoLight from 'images/img-logo-light.svg';
810
import { useSearchContext } from 'common/search/search-context';
911
import { CREATE_PLAY_DOC_LINK } from 'constants';
@@ -34,6 +36,18 @@ const ExtendedFooter = () => {
3436
url: 'https://blog.reactplay.io/',
3537
icon: <IoLogoRss className="icon" />,
3638
title: 'Blog Page'
39+
},
40+
{
41+
name: 'Linkedin',
42+
url: 'https://www.linkedin.com/company/reactplay/',
43+
icon: <FaLinkedin className="icon" />,
44+
title: 'Linkedin Page'
45+
},
46+
{
47+
name: 'Instagram',
48+
url: 'https://www.instagram.com/reactplayio/',
49+
icon: <FaInstagram className="icon" />,
50+
title: 'Instagram Page'
3751
}
3852
];
3953

0 commit comments

Comments
 (0)