diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx index 5c30484..9044bf2 100644 --- a/src/components/app-shell.tsx +++ b/src/components/app-shell.tsx @@ -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 }) {