import { AnimatePresence, motion, useReducedMotion } from 'framer-motion'; export default function PageTransition({ children, routeKey }) { const reduceMotion = useReducedMotion(); if (reduceMotion) return children; return ( {children} ); }