Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-19 18:24:55 +00:00
co-authored by renee-png
parent fe0498cade
commit d275d1e7e8
2 changed files with 23 additions and 0 deletions
+2
View File
@@ -23,6 +23,7 @@ import {
Inbox as InboxIcon,
CreditCard,
Archive as ArchiveIcon,
BarChart3,
} from "lucide-react";
import { cn } from "@/lib/utils";
import type { ReactNode } from "react";
@@ -55,6 +56,7 @@ const NAV: NavItem[] = (() => {
{ to: "/messages", label: "Messages", icon: MessageSquare },
{ to: "/payments", label: "Payments", icon: CreditCard },
{ to: "/documents", label: "Pleadings", icon: FolderOpen },
{ to: "/reports", label: "Reports", icon: BarChart3 },
{ to: "/status", label: "Status Updates", icon: Activity },
{ to: "/tasks", label: "Tasks", icon: CheckSquare },
].sort((a, b) => a.label.localeCompare(b.label));