From aab0c77fc9f7769cc4fe213514afdebf22f1744f 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 03:12:30 +0000 Subject: [PATCH 1/4] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/app-shell.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx index b4e1f07..1b55b1d 100644 --- a/src/components/app-shell.tsx +++ b/src/components/app-shell.tsx @@ -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 }, ]; From 3364f77c4cdf080c3859c289f3de8bb54220aac6 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 03:12:39 +0000 Subject: [PATCH 2/4] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/app-shell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx index 1b55b1d..33248eb 100644 --- a/src/components/app-shell.tsx +++ b/src/components/app-shell.tsx @@ -26,7 +26,7 @@ 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"; +import { QuickAddTime, QuickAddExpense } from "@/components/quick-add/quick-add"; function initials(name: string, email: string) { const src = (name || email || "").trim(); From ee1e99dbee56ac70f166b74fad8d50fce9650942 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 03:12:55 +0000 Subject: [PATCH 3/4] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/app-shell.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx index 33248eb..15d4b6f 100644 --- a/src/components/app-shell.tsx +++ b/src/components/app-shell.tsx @@ -115,8 +115,6 @@ export function AppShell({ children }: { children: ReactNode }) {