'use client'; import { motion, type Variants } from 'framer-motion'; import { useReducedMotion } from '@/hooks/use-reduced-motion'; const pageVariants: Variants = { initial: { opacity: 0, y: 8, }, enter: { opacity: 1, y: 0, transition: { duration: 0.35, ease: [0.16, 1, 0.3, 1] as [number, number, number, number], }, }, exit: { opacity: 0, y: -4, transition: { duration: 0.2, ease: [0.16, 1, 0.3, 1] as [number, number, number, number], }, }, }; export default function MarketingTemplate({ children, }: { children: React.ReactNode; }) { const shouldReduceMotion = useReducedMotion(); if (shouldReduceMotion) { return <>{children}; } return ( {children} ); }