From 46ed67e332141b95b330e28e66351ce5f2c9fa52 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 01:13:55 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/app-shell.tsx | 2 ++ 1 file changed, 2 insertions(+) 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 },