import { motion } from 'framer-motion' type AnimatedSectionProps = { children: React.ReactNode id?: string className?: string } export function AnimatedSection({ children, id, className }: AnimatedSectionProps) { return ( {children} ) }