"use client"; import { motion, useReducedMotion } from "framer-motion"; type HeroMotionBackdropProps = { compact?: boolean; }; export function HeroMotionBackdrop({ compact = false }: HeroMotionBackdropProps) { const reducedMotion = useReducedMotion(); return (