From d5467bf2364658b36ffb91cde341f0c30034bf09 Mon Sep 17 00:00:00 2001 From: mawkone Date: Mon, 8 Jun 2026 14:23:16 -0700 Subject: [PATCH] design: flatten agency client menu structure, moving granular client controls to dedicated client pages --- .../app/[workspace]/agency/layout.tsx | 48 ++++--------------- 1 file changed, 8 insertions(+), 40 deletions(-) diff --git a/vibn-frontend/app/[workspace]/agency/layout.tsx b/vibn-frontend/app/[workspace]/agency/layout.tsx index 2ebe0616..acbcf1e8 100644 --- a/vibn-frontend/app/[workspace]/agency/layout.tsx +++ b/vibn-frontend/app/[workspace]/agency/layout.tsx @@ -397,51 +397,19 @@ export default function AgencyLayout({ /> - Delivery (Projects) + Clients {clients.map((client) => { const clientPath = `/${workspace}/agency/client/${client.id}`; const isActive = pathname.startsWith(clientPath); return ( - - - {isActive && ( -
- - - - -
- )} -
+ ); })}