From 9657ab59c11fba552caa7468519e256f6acf8ec3 Mon Sep 17 00:00:00 2001 From: arpit2006 Date: Thu, 28 May 2026 15:34:01 +0530 Subject: [PATCH] Design improved footer UI --- src/components/Footer.tsx | 211 ++++++++++---------------------------- 1 file changed, 57 insertions(+), 154 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 3ad55184..71ac587b 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,189 +1,91 @@ import { useState } from 'react'; import { Link } from 'react-router-dom'; -import { - FaGithub, - FaTwitter, - FaDiscord, - FaArrowRight, - FaEnvelope, - FaInfoCircle, - FaShieldAlt, // ✅ Added Privacy Icon -} from 'react-icons/fa'; +import { FaGithub, FaTwitter, FaDiscord, FaArrowRight, FaEnvelope } from 'react-icons/fa'; function Footer() { const [email, setEmail] = useState(''); const handleSubscribe = (e: React.FormEvent) => { e.preventDefault(); - - // Replace with API call - alert('Thank you for subscribing!'); - + // TODO: wire up to backend + alert('Thanks — subscription received!'); setEmail(''); }; return ( -