import React from "react"; import { motion } from "framer-motion"; import type { MotionProps } from "framer-motion"; interface MotionWrapperProps extends Omit { children: React.ReactNode; delay?: number; } export default function MotionWrapper({ children, delay = 0, ...props }: MotionWrapperProps) { return ( {children} ); }