'use client'; import { motion, useReducedMotion } from 'framer-motion'; export default function LeagueHomeMockup() { const shouldReduceMotion = useReducedMotion(); const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: shouldReduceMotion ? 0 : 0.1 } } }; const itemVariants = { hidden: { opacity: 0, y: shouldReduceMotion ? 0 : 20 }, visible: { opacity: 1, y: 0 } }; return (