"use client"; import React, { } from "react"; import { motion, useInView } from "framer-motion"; // Animated Section Wrapper const AnimatedSection = ({ children, className = "", }: { children: React.ReactNode; className?: string; }) => { const ref = React.useRef(null); const isInView = useInView(ref, { once: true, margin: "-100px" }); return ( {children} ); }; export default AnimatedSection