import { dashboardKpis, pipelineHealth, reviewQueue, } from "@/lib/dashboard-model"; import { LeadFunnelBoard } from "@/components/lead-funnel-board"; export default function DashboardPage() { return (

Interner Arbeitsbereich

Pipeline-Übersicht

Recherche, Audit-Freigabe und Outreach bleiben eng gekoppelt: wenige gute Leads, manuelle Prüfung, kein automatischer Versand.

MVP intern

{dashboardKpis.map((kpi) => (

{kpi.label}

{kpi.value}

{kpi.detail}

))}

Nächste Review-Schritte

Alles bleibt an manuelle Freigabe gekoppelt.

{reviewQueue.map((item) => (

{item.title}

{item.company}

{item.detail}

))}

Betriebsmodus

{pipelineHealth.map((item) => { const Icon = item.icon; return (
{item.label} {item.value}
); })}
); }