"use client"; import { AnimatePresence, motion } from "framer-motion"; import { usePathname } from "next/navigation"; import React from "react"; export function PageTransitionProvider({ children }: { children: React.ReactNode }) { const pathname = usePathname(); return ( {children} {/* Exit Animation Overlay */} {/* Enter Animation Overlay */} ); }