import { Crown, ExternalLink, Globe, Workflow, Zap } from 'lucide-react'; export const ECOSYSTEM_APPS = [ { href: '/conduit/', label: 'Conduit — Reverse ETL', description: 'Visual no-code Reverse ETL — map SZL data to Salesforce, HubSpot, Slack, Sheets, Notion, and more', icon: Workflow, color: '#22c55e', }, { href: '/imperium/', label: 'IMPERIUM', description: 'Infrastructure command center — resource orchestration, governance, and security perimeter', icon: Crown, color: '#d4a054', }, { href: '/governance/lexicon', label: 'LEXICON — License Intelligence', description: 'Operator-curated license catalog backing the inference governance gate', icon: Zap, color: '#c9b787', }, { href: '/stephen-site/', label: 'Stephen Site', description: 'Personal portfolio and thought-leadership platform for executive communications', icon: Globe, color: 'var(--gi-accent-blue)', }, ]; export function EcosystemAppsGrid() { return (

Ecosystem Apps

{ECOSYSTEM_APPS.length} apps
{ECOSYSTEM_APPS.map((app) => { const Icon = app.icon; return (
{app.label}
{app.description}
); })}
); }