'use client'; import { motion } from 'framer-motion'; import { ReactNode } from 'react'; export default function FadeIn({ children }: { children: ReactNode }) { return ( {children} ); }