import { cn } from "@/lib/utils"; interface BrandMarkProps { size?: number; className?: string; } /** Inline twin of app/icon.svg (the favicon) - kept as markup, not an , so it can be sized/animated with CSS. */ export function BrandMark({ size = 28, className }: BrandMarkProps) { return ( ); }