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 ( -