'use client'; import { motion, useReducedMotion } from 'framer-motion'; import { useState, useEffect } from 'react'; export default function RaceHistoryMockup() { const shouldReduceMotion = useReducedMotion(); const [isMobile, setIsMobile] = useState(false); useEffect(() => { const checkMobile = () => setIsMobile(window.innerWidth < 768); checkMobile(); window.addEventListener('resize', checkMobile); return () => window.removeEventListener('resize', checkMobile); }, []); const itemVariants = { hidden: { opacity: 0, scale: shouldReduceMotion ? 1 : 0.95 }, visible: { opacity: 1, scale: 1 } }; // Simple, elegant mobile version - just the core story if (isMobile) { return (