'use client'; import { LazyMotion } from 'framer-motion'; const loadFeatures = () => import('@/lib/framer-features').then(res => res.default); export function FramerMotionProvider({ children }: { children: React.ReactNode }) { return ( {children} ); }