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