diff --git a/components/layout/hero-motion-backdrop.tsx b/components/layout/hero-motion-backdrop.tsx index 6fec029..2535d47 100644 --- a/components/layout/hero-motion-backdrop.tsx +++ b/components/layout/hero-motion-backdrop.tsx @@ -1,50 +1,67 @@ "use client"; -import { motion } from "framer-motion"; +import { motion, useReducedMotion } from "framer-motion"; type HeroMotionBackdropProps = { compact?: boolean; }; export function HeroMotionBackdrop({ compact = false }: HeroMotionBackdropProps) { + const reducedMotion = useReducedMotion(); + return (