import React from 'react'; import { motion } from 'framer-motion'; import { useAnimatedSection } from '@/hooks/useAnimatedSection'; interface AnimatedSectionProps { children: React.ReactNode; className?: string; } const AnimatedSection: React.FC = ({ children, className }) => { const { ref, isInView } = useAnimatedSection(); return ( {children} ); }; export default AnimatedSection;