diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx index db29988..cc2e251 100644 --- a/src/components/app-shell.tsx +++ b/src/components/app-shell.tsx @@ -13,6 +13,7 @@ import { Scale, LayoutDashboard, Settings, + Wallet, } from "lucide-react"; import { cn } from "@/lib/utils"; import type { ReactNode } from "react"; @@ -28,6 +29,7 @@ const NAV: NavItem[] = [ { to: "/", label: "Dashboard", icon: LayoutDashboard }, { to: "/clients", label: "Clients", icon: Users }, { to: "/cases", label: "Cases", icon: Briefcase }, + { to: "/collections", label: "Collections", icon: Wallet }, { to: "/invoices", label: "Invoices", icon: Receipt }, { to: "/admin/users", label: "Users", icon: ShieldCheck, adminOnly: true }, { to: "/settings", label: "Settings", icon: Settings, adminOnly: true },