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