Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 16:02:01 +00:00
co-authored by renee-png
parent 59e13de4b6
commit 9d04ffe543
+10 -10
View File
@@ -38,23 +38,23 @@ interface NavItem {
}
const NAV: NavItem[] = [
{ to: "/", label: "Dashboard", icon: LayoutDashboard },
{ to: "/admin/users", label: "Users", icon: ShieldCheck, adminOnly: true },
{ to: "/calendar", label: "Calendar", icon: CalendarIcon },
{ to: "/clients", label: "Clients", icon: Users },
{ to: "/contacts", label: "Contacts", icon: UserPlus },
{ to: "/cases", label: "Cases", icon: Briefcase },
{ to: "/tasks", label: "Tasks", icon: CheckSquare },
{ to: "/messages", label: "Messages", icon: MessageSquare },
{ to: "/inbox", label: "Inbox", icon: InboxIcon },
{ to: "/status", label: "Status Updates", icon: Activity },
{ to: "/clients", label: "Clients", icon: Users },
{ to: "/collections", label: "Collections", icon: DollarSign },
{ to: "/documents", label: "Pleadings", icon: FolderOpen },
{ to: "/contacts", label: "Contacts", icon: UserPlus },
{ to: "/", label: "Dashboard", icon: LayoutDashboard },
{ to: "/files", label: "Files", icon: FilesIcon },
{ to: "/forms", label: "Forms", icon: ClipboardList },
{ to: "/inbox", label: "Inbox", icon: InboxIcon },
{ to: "/invoices", label: "Invoices", icon: Receipt },
{ to: "/messages", label: "Messages", icon: MessageSquare },
{ to: "/documents", label: "Pleadings", icon: FolderOpen },
{ to: "/settings", label: "Settings", icon: SettingsIcon },
{ to: "/admin/users", label: "Users", icon: ShieldCheck, adminOnly: true },
];
{ to: "/status", label: "Status Updates", icon: Activity },
{ to: "/tasks", label: "Tasks", icon: CheckSquare },
].sort((a, b) => a.label.localeCompare(b.label));
void FileText;
export function AppShell({ children }: { children: ReactNode }) {