diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 878366f..46d945c 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,36 +1,168 @@ -import { FaGithub } from 'react-icons/fa'; +import React, { useState } from 'react'; +import { FaGithub, FaTwitter, FaDiscord, FaArrowRight } from 'react-icons/fa'; import { Link } from 'react-router-dom'; function Footer() { + const [email, setEmail] = useState(''); + + const handleSubscribe = (e: React.FormEvent) => { + e.preventDefault(); + // Removed raw console logging of emails to protect user data privacy (PII leak fix) + alert('Thank you for subscribing!'); + setEmail(''); + }; + return ( -