const ROLES = ['CTO', 'CFO', 'Investor Rep', 'Independent'] const KEY_MAP = { 'CTO': 'cto', 'CFO': 'cfo', 'Investor Rep': 'inv', 'Independent': 'ind' } // ASCII block bar function AsciiTrustBar({ pct }) { const total = 12 const filled = Math.round((pct / 100) * total) return ( {'█'.repeat(filled)}{'░'.repeat(total - filled)} ) } export default function TrustPanel({ trust, prevTrust }) { if (!trust) { return (