Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
feat: threads social to footer (#736)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chandraprakash-Darji authored Aug 14, 2023
1 parent 69004bc commit 35c6cdd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/layout/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
FaTwitter,
FaYoutube,
} from 'react-icons/fa';
import { MdAlternateEmail } from 'react-icons/md';
import { SiHashnode } from 'react-icons/si';

import clsxm from '@/lib/utils';
Expand Down Expand Up @@ -77,7 +78,7 @@ const Footer = () => {
<UnstyledLink href='/#' className='h3 font-black'>
WeMakeDevs
</UnstyledLink>
<div className='mx-auto flex flex-wrap items-center gap-4 lg:mr-0'>
<div className='mx-auto flex flex-wrap items-center justify-center gap-4 lg:mr-0'>
{links.map((link) => (
<UnstyledLink
key={link.name}
Expand Down Expand Up @@ -225,4 +226,11 @@ const links = [
ariaLabel: 'Visit WeMakeDevs on hashnode',
className: 'hover:text-[#2962ff]',
},
{
name: 'threads',
link: 'https://www.threads.net/@wemakedevs',
icon: <MdAlternateEmail />,
ariaLabel: 'Visit WeMakeDevs on Threads',
className: 'hover:text-[#333333]',
},
];

0 comments on commit 35c6cdd

Please sign in to comment.