import { dashboardKpis, pipelineHealth, pipelineStages, reviewQueue, } from "@/lib/dashboard-model"; export default function DashboardPage() { return (

Interner Arbeitsbereich

Pipeline-Uebersicht

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

Mock-Session aktiv

{dashboardKpis.map((kpi) => (

{kpi.label}

{kpi.value}

{kpi.detail}

))}
{pipelineStages.map((stage) => { const Icon = stage.icon; return (
{stage.count}

{stage.title}

{stage.description}

{stage.meta}

); })}

Naechste 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}
); })}
); }