'use client'; import { motion, MotionProps } from 'framer-motion'; import { ReactNode } from 'react'; interface MotionWrapperProps extends MotionProps { children: ReactNode; } export function MotionWrapper({ children, ...props }: MotionWrapperProps) { return {children}; }