Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 03:12:30 +00:00
co-authored by renee-png
parent 2ce5dd7267
commit aab0c77fc9
+12
View File
@@ -14,12 +14,19 @@ import {
LayoutDashboard,
CheckSquare,
MessageSquare,
Activity,
DollarSign,
FileText,
FolderOpen,
Settings as SettingsIcon,
} from "lucide-react";
import { cn } from "@/lib/utils";
import type { ReactNode } from "react";
import { useBubbleCounts } from "@/lib/use-bubble-counts";
import { NotificationBell } from "@/components/notifications/notification-bell";
import { DateCalculator } from "@/components/date-calculator";
import { HeaderTimer } from "@/components/timer/header-timer";
import { QuickAdd } from "@/components/quick-add/quick-add";
function initials(name: string, email: string) {
const src = (name || email || "").trim();
@@ -40,7 +47,12 @@ const NAV: NavItem[] = [
{ to: "/cases", label: "Cases", icon: Briefcase },
{ to: "/tasks", label: "Tasks", icon: CheckSquare, bubbleKey: "tasks" },
{ to: "/messages", label: "Messages", icon: MessageSquare, bubbleKey: "messages" },
{ to: "/status", label: "Status Updates", icon: Activity },
{ to: "/collections", label: "Collections", icon: DollarSign },
{ to: "/documents", label: "Documents", icon: FileText },
{ to: "/files", label: "Files", icon: FolderOpen },
{ to: "/invoices", label: "Invoices", icon: Receipt },
{ to: "/settings", label: "Settings", icon: SettingsIcon },
{ to: "/admin/users", label: "Users", icon: ShieldCheck, adminOnly: true },
];