'use client'; import { motion, useReducedMotion } from 'framer-motion'; export default function CareerProgressionMockup() { const shouldReduceMotion = useReducedMotion(); const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: shouldReduceMotion ? 0 : 0.08 } } }; const itemVariants = { hidden: { opacity: 0, x: shouldReduceMotion ? 0 : -20 }, visible: { opacity: 1, x: 0 } }; return (
{/* Driver Header */}
{/* Career Stats */}
Career Overview
{[1, 2, 3].map((i) => (
))}
{/* Season Timeline */}
Season History
{[1, 2, 3].map((i) => (
))}
{/* Multi-League Badge */}
{[1, 2, 3].map((i) => (
))}
); }