GSAP notes
<------------------------------------- GSAP IMPS -----------------------------------------> # Randoms 1. Remember to use the useEffect and useRef(to take the reference of that particular block link div,etc) hook while using GSAP library. Example:- const containerRef = useRef(null); useEffect(() => { const tl = gsap.timeline(); tl.to(containerRef.current, { x: 800, duration: 1, delay: 2, backgroundColor: "green", rotate: 270, borderRadius: "50%", // both properties are requi...