feat: add lead qualification workflow

This commit is contained in:
2026-06-04 16:09:47 +02:00
parent 15d8bfeb66
commit 59824b7336
19 changed files with 2833 additions and 78 deletions

View File

@@ -1,10 +1,5 @@
import { DashboardPlaceholderPage } from "@/components/dashboard-placeholder-page";
import { BlacklistManager } from "@/components/blacklist/blacklist-manager";
export default function BlacklistPage() {
return (
<DashboardPlaceholderPage
description="Sperrlisten für Domains, E-Mails, Telefonnummern, Firmennamen und Place IDs folgen nach den Datenmodellen."
title="Sperrliste"
/>
);
return <BlacklistManager />;
}

View File

@@ -1,10 +1,5 @@
import { DashboardPlaceholderPage } from "@/components/dashboard-placeholder-page";
import { LeadsReviewTable } from "@/components/leads/leads-review-table";
export default function LeadsPage() {
return (
<DashboardPlaceholderPage
description="Lead-Qualifikation, Dubletten und fehlende Kontaktdaten folgen in TASK-7."
title="Leads"
/>
);
return <LeadsReviewTable />;
}