// app/components/Contact.tsx import React, {useEffect, useState} from "react"; export default function Contact() { const [isVisible, setIsVisible] = useState(false); useEffect(() => { setTimeout(() => { setIsVisible(true); }, 350); // Delay to start the animation after Projects }, []); return (

Contact Me

); }