'use client'; import { LazyMotion, m, domMax } from 'framer-motion'; // ---------------------------------------------------------------------- type Props = { children: React.ReactNode; }; export function MotionLazy({ children }: Props) { return ( {children} ); }