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