"use client"; import { motion } from "framer-motion"; import { PropsWithChildren } from "react"; export function ScrollReveal({ children, delay = 0, y = 24, }: PropsWithChildren<{ delay?: number; y?: number }>) { return ( {children} ); }