'use client' import { useRef } from 'react' import { motion, useInView } from 'framer-motion' interface ScrollRevealProps { children: React.ReactNode className?: string delay?: number } export default function ScrollReveal({ children, className = '', delay = 0 }: ScrollRevealProps) { const ref = useRef(null) const isInView = useInView(ref, { once: true, margin: '-100px' }) return ( {children} ) }