Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
2ce5dd7267
commit
aab0c77fc9
@@ -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 },
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user