import { useRef } from 'react' import { motion, useInView } from 'framer-motion' export default function AnimatedSection({ children, id, backgroundColor = 'var(--brand-black)', }: { children: React.ReactNode id?: string backgroundColor?: string }) { const ref = useRef(null) const isInView = useInView(ref, { once: true, margin: '-100px' }) return ( {children} ) }