Skip to content

Commit

Permalink
fix : #1442 added instargam and linkedin icons to the footer (#1446)
Browse files Browse the repository at this point in the history
Co-authored-by: Priyankar Pal <[email protected]>
  • Loading branch information
Siddh744542 and priyankarpal committed Feb 14, 2024
1 parent 6949dc8 commit 39e591e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/common/footer/ExtendedFooter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import { MdManageSearch } from 'react-icons/md';
import { FaDiscord } from 'react-icons/fa';
import { BsGithub } from 'react-icons/bs';
import { FaXTwitter } from 'react-icons/fa6';
import { FaLinkedin } from 'react-icons/fa';
import { FaInstagram } from 'react-icons/fa6';
import LogoLight from 'images/img-logo-light.svg';
import { useSearchContext } from 'common/search/search-context';
import { CREATE_PLAY_DOC_LINK } from 'constants';
Expand Down Expand Up @@ -34,6 +36,18 @@ const ExtendedFooter = () => {
url: 'https://blog.reactplay.io/',
icon: <IoLogoRss className="icon" />,
title: 'Blog Page'
},
{
name: 'Linkedin',
url: 'https://www.linkedin.com/company/reactplay/',
icon: <FaLinkedin className="icon" />,
title: 'Linkedin Page'
},
{
name: 'Instagram',
url: 'https://www.instagram.com/reactplayio/',
icon: <FaInstagram className="icon" />,
title: 'Instagram Page'
}
];

Expand Down

0 comments on commit 39e591e

Please sign in to comment.