// ============================================================ // page-customer.jsx — CRM company record page. // Header (logo + name + status + actions), 2-col layout: // left — details panel (industry, owner, links, deals) // right — tabbed work area (Overview / Activity / People / Notes) // Pure content. Wrap in any *Chrome to compose. // ============================================================ const CustomerBody = ({ theme = "light" }) => { const dark = theme === "dark"; const c = dark ? { bg: "#0f0f14", panel: "#13131a", border: "#ffffff10", text: "#e8e8ee", subtext: "#9a9aa6", muted: "#6a6a78", rowAlt: "#ffffff04", accent: "#7a78ff", ring: "#5e5cff", chipBg: "#ffffff08", chipText: "#dcdce4", inputBg: "#0a0a10", } : { bg: "#fcfcfb", panel: "#ffffff", border: "#e8e8e3", text: "#111", subtext: "#5a5a5e", muted: "#8a8a90", rowAlt: "#f9f9f6", accent: "#5e5cff", ring: "#5e5cff", chipBg: "#f1f0eb", chipText: "#3a3a3e", inputBg: "#fff", }; const KV = ({ k, v }) => (