import { cn } from '@/lib/utils' interface BrandWordmarkProps { size?: 'sm' | 'lg' className?: string } /** * ResolutionFlow wordmark — clean white text. * sm for header/navbar, lg for login/register pages. */ export function BrandWordmark({ size = 'sm', className }: BrandWordmarkProps) { return ( ResolutionFlow ) }