import { LiveLogo } from './LiveLogo'; interface Props { accent: string; peerCount: number; } export const Brand = ({ accent, peerCount }: Props) => (
{/* Two-tone wordmark per design/logo/INTEGRATION.md: "Soft" in --t-1, "LAN" always in the accent. */}
SoftLAN
{peerCount > 0 && ( {peerCount} )}
);