import type { NavigationType } from "@/types" export const navigationsData: NavigationType[] = [ { title: "Main", items: [ { title: "Dashboard", href: "/dashboard", iconName: "LayoutDashboard", }, { title: "Mitglieder", href: "/members", iconName: "Users", }, { title: "Ausgabe", href: "/distributions", iconName: "Leaf", }, { title: "Lager", href: "/stock", iconName: "Package", }, { title: "Berichte", href: "/reports", iconName: "FileText", }, { title: "Personal", href: "/settings/staff", iconName: "UserCog", }, ], }, { title: "Compliance", items: [ { title: "Protokoll", href: "/audit-log", iconName: "ScrollText", }, ], }, ]