From 8f8098aa8756597da89be494b2f403864c28aecf Mon Sep 17 00:00:00 2001 From: yuvraj-k-singh Date: Sun, 17 May 2026 13:57:12 +0530 Subject: [PATCH 1/2] improve: ui/ux of footer section Signed-off-by: yuvraj-k-singh --- src/components/Footer.tsx | 172 +++++++++++++++++++++++++++++++++----- 1 file changed, 150 insertions(+), 22 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 878366f..e569b8c 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,36 +1,164 @@ -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(); + console.log('Subscribed email:', email); + alert('Thank you for subscribing!'); + setEmail(''); + }; + return ( -