import { useInView } from 'framer-motion'; import { useRef } from 'react'; export const useAnimatedSection = () => { const ref = useRef(null); const isInView = useInView(ref, { once: true, amount: 0.2 }); return { ref, isInView }; };