"use client"; import { useScrollAnimate } from "@/hooks/use-scroll-animate"; interface ScrollSectionProps { children: React.ReactNode; className?: string; delay?: number; } export function ScrollSection({ children, className = "", delay, }: ScrollSectionProps) { const ref = useScrollAnimate(); return (
{children}
); }