29 lines
901 B
TypeScript
29 lines
901 B
TypeScript
import {
|
|
BarChart3,
|
|
FileSearch,
|
|
LayoutDashboard,
|
|
MailCheck,
|
|
MapPinned,
|
|
OctagonMinus,
|
|
Settings,
|
|
UsersRound,
|
|
type LucideIcon,
|
|
} from "lucide-react";
|
|
|
|
export type DashboardNavigationItem = {
|
|
label: string;
|
|
href: string;
|
|
icon: LucideIcon;
|
|
};
|
|
|
|
export const dashboardNavigation: DashboardNavigationItem[] = [
|
|
{ label: "Übersicht", href: "/dashboard", icon: LayoutDashboard },
|
|
{ label: "Kampagnen", href: "/dashboard/campaigns", icon: MapPinned },
|
|
{ label: "Leads", href: "/dashboard/leads", icon: UsersRound },
|
|
{ label: "Audits", href: "/dashboard/audits", icon: FileSearch },
|
|
{ label: "Review", href: "/dashboard/outreach", icon: MailCheck },
|
|
{ label: "Analytics", href: "/dashboard/analytics", icon: BarChart3 },
|
|
{ label: "Sperrliste", href: "/dashboard/blacklist", icon: OctagonMinus },
|
|
{ label: "Einstellungen", href: "/dashboard/settings", icon: Settings },
|
|
];
|