From fc69a1e9ae36234de695944e051c212b345f56c2 Mon Sep 17 00:00:00 2001 From: Pheonix <150040105+ArshiBansal@users.noreply.github.com> Date: Thu, 28 May 2026 14:34:36 +0530 Subject: [PATCH] fixed --- src/components/Footer.tsx | 179 ++++++++++++++++++++++++++------------ 1 file changed, 124 insertions(+), 55 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 9c8e35e9..dc6351cb 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,99 +1,167 @@ "use client"; -import { useState } from "react"; import Link from "next/link"; -import { Github, Twitter, Instagram, Linkedin, ArrowRight, ShieldCheck, Zap, Globe, ExternalLink, Lock, Mail } from "lucide-react"; +import { + Github, + Twitter, + Instagram, + Linkedin, + ArrowRight, + ShieldCheck, + Zap, + Globe, + ExternalLink, + Lock, + Mail, +} from "lucide-react"; export default function Footer() { - const [isExpanded, setIsExpanded] = useState(false); - return ( ); -} \ No newline at end of file +}