"use client"; import { LazyMotion, domAnimation } from "framer-motion"; export function MotionProvider({ children }: { children: React.ReactNode }) { return ( {children} ); }