'use client' import { motion } from 'motion/react' export function PageEntry({ children, className }: { children: React.ReactNode; className?: string }) { return ( {children} ) }