"use client"; import { AnimatePresence, motion } from "motion/react"; import type { ReactNode } from "react"; import { useReducedMotion } from "./Preferences.tsx"; export function Presence({ children, presenceKey, className = "", }: { children: ReactNode; presenceKey: string | number; className?: string; }) { const reduced = useReducedMotion(); return ( {children} ); }