interface AICompanionProps { name: string; size?: 'sm' | 'md' | 'lg'; showName?: boolean; } export default function AICompanion({ name, size = 'lg', showName = true, }: AICompanionProps) { const sizeClasses = { sm: 'w-16 h-16 text-3xl', md: 'w-24 h-24 text-5xl', lg: 'w-32 h-32 text-6xl', }; return (