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