import Link from "next/link"; import { useEffect, useState } from "react"; export default function Footer_Back() { const [isVisible, setIsVisible] = useState(false); useEffect(() => { setTimeout(() => { setIsVisible(true); }, 450); // Delay to start the animation }, []); return ( ); }