"use client"; import { usePathname } from "next/navigation"; import { AnimatePresence, motion } from "motion/react"; export function PageTransition({ children }: { children: React.ReactNode }) { const pathname = usePathname(); return ( {children} ); }