import Link from "next/link"; import { useEffect, useState } from "react"; export default function Footer() { const [isVisible, setIsVisible] = useState(false); useEffect(() => { setTimeout(() => { setIsVisible(true); }, 450); // Delay to start the animation }, []); const scrollToSection = (id: string) => { const element = document.getElementById(id); if (element) { element.scrollIntoView({ behavior: "smooth" }); } }; return ( ); }