/** * Hero — left panel with branding, feature pills, version * * Props: * base — base path for assets (string) * version — app version (string) * env — environment label or null */ const { html } = window; const PILLS = [ { icon: '\u{1F9E9}', label: 'Extensions', cls: 'pu' }, { icon: '\u{1F310}', label: 'Surfaces', cls: 'ac' }, { icon: '\u{1F465}', label: 'Teams & RBAC', cls: 'pu' }, { icon: '\u{1F517}', label: 'Connections', cls: 'ac' }, { icon: '\u{2699}\u{FE0F}', label: 'Workflows', cls: 'pu' }, { icon: '\u{1F4E6}', label: 'Package Registry', cls: 'ac' }, ]; export function Hero({ base = '', version = '', env = null }) { return html`

Your platform,${html`
`}your infrastructure

`; }