import { cn } from '@/lib/cn'; /** * Official UQO wordmark (PNG @2x, recoloured) + product name. * `inverted` for the blue header; `withText=false` for compact spots. */ export function Logo({ className, inverted = false, withText = true, size = 'md' }: { className?: string; inverted?: boolean; withText?: boolean; size?: 'sm' | 'md' | 'lg' }) { const h = size === 'lg' ? 'h-12' : size === 'sm' ? 'h-6' : 'h-8'; return ( UQO {withText && ( UQO-Chat Tuteur IA · IMM1003 · IMM1033 )} ); }