'use client' interface BrandNameProps { className?: string prefix?: boolean } /** * Renders "ComplAI" (or "BreakPilot ComplAI") with the "AI" portion * styled as a gradient to visually distinguish lowercase-L from uppercase-I. */ export default function BrandName({ className = '', prefix = false }: BrandNameProps) { return ( {prefix && <>BreakPilot } ComplAI ) }