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