/** * Brand mark — the app's card-fan icon (mirrors public/icon.svg): three gold-edged * playing cards fanned out, a spade on the face card. Scales cleanly from the nav * (≈34px) to the hero (≈160px). `glow` adds a soft gold halo for hero use. */ export function Logo({ size = 36, glow = false }: { size?: number; glow?: boolean }) { return ( ); }