import { motion } from 'framer-motion'; type Props = Omit< React.ComponentProps, 'initial' | 'animated' | 'transition' > & { duration?: number; }; export const AnimatedEaseIn = ({ children, duration = 0.3, ...restProps }: Props) => { const initial = { opacity: 0 }; const animate = { opacity: 1 }; const transition = { ease: 'linear', duration }; return ( {children} ); };