'use client' import { motion } from 'framer-motion' import { ReactNode } from 'react' export function PageTransition({ children, className }: { children: ReactNode; className?: string }) { return ( {children} ) }