design: first impl of logo, still with glitch

This commit is contained in:
2026-06-21 20:16:41 +02:00
parent 2d53848e0c
commit 14b30fe2da
27 changed files with 319 additions and 23 deletions
@@ -1,10 +1,13 @@
import { LiveLogo } from './LiveLogo';
interface Props {
accent: string;
peerCount: number;
}
export const Brand = ({ peerCount }: Props) => (
export const Brand = ({ accent, peerCount }: Props) => (
<div className="brand">
<div className="brand-mark">S</div>
<LiveLogo className="brand-mark" accent={accent} size={28} />
<div className="brand-name">SoftLAN</div>
{peerCount > 0 && (
<span