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: "Anbau", href: "/grow", iconName: "Sprout", }, { title: "Berichte", href: "/reports", iconName: "FileText", }, { title: "Schwarzes Brett", href: "/info-board", iconName: "Megaphone", }, { title: "Finanzen", href: "/finance", iconName: "Wallet", }, { title: "Versammlungen", href: "/assemblies", iconName: "Gavel", }, { title: "Dokumente", href: "/documents", iconName: "FileArchive", }, { title: "Vorstand", href: "/board", iconName: "Shield", }, { title: "Kalender", href: "/calendar", iconName: "Calendar", }, { title: "Forum", href: "/forum", iconName: "MessageSquare", }, { title: "Personal", href: "/settings/staff", iconName: "UserCog", }, ], }, { title: "Compliance", items: [ { title: "Protokoll", href: "/audit-log", iconName: "ScrollText", }, ], }, ]