Has anyone encountered issues with Framer Motion in Next.js 14? Currently, I’m experiencing an issue where Framer Motion animations are not triggering on initial load. I’ve read that this might be due to the component running in server-side rendering (SSR). I’ve tried using useClient
, but the issue persists. some suggested me to use useEffect
but i dont want to trigger every motion by useEffect.
Any suggestions or insights would be greatly appreciated.
I’ve tried using useClient
,