'use client'; import { motion } from 'framer-motion'; import { ReactNode } from 'react'; function MotionWrapper({ children }: { children: ReactNode }) { return ( {children} ); } export { MotionWrapper };