From b0031828b4704a90feb54ec10a8a2501834c68aa Mon Sep 17 00:00:00 2001 From: Parth Bhuptani <240173132002@vgecg.ac.in> Date: Wed, 4 Feb 2026 17:44:55 +0530 Subject: [PATCH] Add social media icons to ContributorsFooter Added social media icons (GitHub, LinkedIn, X, and Website) to the ContributorsFooter component. Includes hover effects for better UI consistency. --- src/components/Footer/ContributorsFooter.jsx | 23 ++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/src/components/Footer/ContributorsFooter.jsx b/src/components/Footer/ContributorsFooter.jsx index 1ad5906..356c5e2 100644 --- a/src/components/Footer/ContributorsFooter.jsx +++ b/src/components/Footer/ContributorsFooter.jsx @@ -1,6 +1,7 @@ import React from 'react'; import { motion } from 'framer-motion'; -import { FaGithub, FaLinkedin, FaTwitter, FaHeart, FaCode, FaUsers, FaBook, FaEnvelope } from 'react-icons/fa'; +import { FaGithub, FaLinkedin, FaHeart, FaCode, FaUsers, FaBook, FaEnvelope, FaGlobe } from 'react-icons/fa'; +import { FaXTwitter } from 'react-icons/fa6'; import { BiCopyright, BiLink } from 'react-icons/bi'; import { useNavigate } from 'react-router-dom'; import { useState, useEffect } from 'react'; @@ -73,7 +74,25 @@ const ContributorsFooter = ({ contributorsCount = 0 }) => { icon: FaGithub, url: 'https://github.com/Sahilll94/Travel-Book', color: 'hover:text-gray-900 dark:hover:text-white' - } + }, + { + name: 'LinkedIn', + icon: FaLinkedIn, + url: 'https://www.linkedin.com/in/sahilll94', + color: 'hover:text-blue-600 + }, + { + name: 'X', + icon: FaXTwitter, + url: 'https://x.com/Sa_hilll94', + color: 'hover:text-black dark:hover:text-white + }, + { + name: 'Website', + icon: FaGlobe, + url: 'https://sahilfolio.live/', + color: 'hover:text-gray-900 dark:hover:text-white + }, ]; const stats = [