/** LM-Gambit brand mark — a chess pawn cut from a warm gradient. */ import { useId } from 'react' export function Logo({ size = 30 }: { size?: number }) { // The mark renders more than once per page (rail + mobile bar), so the // gradient needs a unique id or the second instance resolves to the first. const gradientId = useId() return ( ) }