From f8a31c94b9cc8f66f17a08d62e52ac7fbf2f0275 Mon Sep 17 00:00:00 2001 From: Shweta Date: Fri, 22 May 2026 13:14:43 +0530 Subject: [PATCH] Replaced outdated twitter icon with X branding --- src/components/Footer.tsx | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 411bf2ff..fa6ff461 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,14 +1,16 @@ import { useState } from 'react'; import { Link } from 'react-router-dom'; + import { FaGithub, - FaTwitter, FaDiscord, FaArrowRight, FaEnvelope, FaInfoCircle, } from 'react-icons/fa'; +import { FaXTwitter } from 'react-icons/fa6'; + function Footer() { const [email, setEmail] = useState(''); @@ -34,6 +36,7 @@ function Footer() { " >
+ {/* Upper Section */}
@@ -145,35 +148,38 @@ function Footer() { {/* Social Icons */}
+ + {/* GitHub */} + {/* X / Twitter */} e.preventDefault()} + className="text-zinc-600 dark:text-zinc-400 hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed" + aria-label="X" > - + + {/* Discord */} e.preventDefault()} + className="text-zinc-600 dark:text-zinc-400 hover:text-indigo-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed" aria-label="Discord" > +
@@ -181,4 +187,4 @@ function Footer() { ); } -export default Footer; +export default Footer; \ No newline at end of file