// Enke logo system — restored V2 mark: // The isotype is a "bullseye / target dot" — the ◉ symbol that read as a // spending pin on the map. Lockup pairs the bold ENKE wordmark with the // bullseye to its right (ENKE◉). // // kind: 'lockup' | 'iso' | 'word' // color: 'blue' | 'black' | 'white' | 'inverse' function EnkeLogo({ kind = 'lockup', color = 'blue', size = 32 }) { const palette = { blue: { fg: '#0B1220', accent: '#005AD6' }, black: { fg: '#0B1220', accent: '#0B1220' }, white: { fg: '#FFFFFF', accent: '#FFFFFF' }, inverse: { fg: '#FFFFFF', accent: '#2171E0' }, }; const c = palette[color] || palette.blue; // ISOTYPE — bullseye / target. Outer ring + solid inner dot. const Iso = ({ s = size }) => ( ); // WORDMARK — bold lowercase "enke" with stronger letterforms. const Word = ({ h = size }) => ( enke ); if (kind === 'iso') return ; if (kind === 'word') return ; // LOCKUP — wordmark + bullseye to its right return ( ); } window.EnkeLogo = EnkeLogo;