'use client'; import { motion } from 'framer-motion'; type AnimateGenericFadeInOutProps = { children: React.ReactNode; className?: string; motionKey?: string; }; export const AnimateGenericFadeInOut = ({ children, className, motionKey, }: AnimateGenericFadeInOutProps) => { return ( {children} ); };