"use client"; import { motion } from "framer-motion"; /** * Page transition wrapper that applies a subtle fade + slide * animation when the component mounts or unmounts. * Wrap the outermost content of each route page with this component. */ interface PageTransitionProps { children: React.ReactNode; } export function PageTransition({ children }: PageTransitionProps) { return ( {children} ); }