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