diff --git a/components/layout/footer/footer-social.tsx b/components/layout/footer/footer-social.tsx index 2e1b2fab..d61531aa 100644 --- a/components/layout/footer/footer-social.tsx +++ b/components/layout/footer/footer-social.tsx @@ -8,6 +8,7 @@ import IconReddit from 'remixicon/icons/Logos/reddit-fill.svg'; import { socialMediaUrls } from 'data/config'; import IconMatrix from '../../../public/images/common/matrix-logo-white.svg'; +import IconPeeranha from '../../../public/images/common/peeranha-logo-white.svg'; const SOCIAL_LINKS = { Discord: { @@ -34,12 +35,16 @@ const SOCIAL_LINKS = { icon: IconMatrix, href: socialMediaUrls.matrixUrl, }, + Peeranha: { + icon: IconPeeranha, + href: socialMediaUrls.peeranhaUrl, + }, }; export const FooterSocial = () => { const linkEntries = Object.entries(SOCIAL_LINKS); return ( -
+
{linkEntries.map(([key, linkData]) => { const Icon = linkData.icon; if (key === 'Matrix') { @@ -57,6 +62,21 @@ export const FooterSocial = () => { ); } + if (key === 'Peeranha') { + return ( + + + + ); + } + return ( + + + + +