From 9d04ffe5436a3573e308be8cb0b10cee2bc0f7ce Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 16:02:01 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/app-shell.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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 }) {