From 6e3a79adb81afdac7266596071b923c5eca5cfb6 Mon Sep 17 00:00:00 2001 From: Thomas Joise Date: Sun, 19 Jul 2026 19:37:15 +0530 Subject: [PATCH] chore(nav): move Clients up to Overview (after Dashboard) Clients is the most-used screen, so it moves from the 'Clients & billing' group to the top Overview group, right after Dashboard. Documents/Renewals/SMS credits stay in Clients & billing. Co-Authored-By: Claude Fable 5 --- apps/hq-web/src/nav.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/hq-web/src/nav.ts b/apps/hq-web/src/nav.ts index 21cdd74..d2ce3fb 100644 --- a/apps/hq-web/src/nav.ts +++ b/apps/hq-web/src/nav.ts @@ -22,6 +22,7 @@ export const NAV_GROUPS: NavGroup[] = [ items: [ { to: '/', label: 'Home', icon: LayoutGrid }, { to: '/dashboard', label: 'Dashboard', icon: LayoutDashboard }, + { to: '/clients', label: 'Clients', icon: Users }, ], }, { @@ -36,7 +37,6 @@ export const NAV_GROUPS: NavGroup[] = [ { label: 'Clients & billing', items: [ - { to: '/clients', label: 'Clients', icon: Users }, { to: '/documents', label: 'Documents', icon: Files, end: true }, { to: '/renewals', label: 'Renewals', icon: CalendarClock }, { to: '/sms-balances', label: 'SMS credits', icon: MessageSquare },