From c60ed9ab218e140008d97764ce1bca7cb7ec11ed Mon Sep 17 00:00:00 2001 From: Mondo Diaz Date: Mon, 2 Feb 2026 20:44:04 -0600 Subject: [PATCH] Move Dashboard and Teams from navbar to user dropdown menu Cleaner navbar with just Projects and Docs links. Dashboard and Teams are now in the user menu dropdown. --- frontend/src/components/Layout.tsx | 52 +++++++++++++++++------------- 1 file changed, 29 insertions(+), 23 deletions(-) diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx index f7c55a3..57c91d2 100644 --- a/frontend/src/components/Layout.tsx +++ b/frontend/src/components/Layout.tsx @@ -84,29 +84,6 @@ function Layout({ children }: LayoutProps) { Projects - - - - - - - - Dashboard - - {user && userTeams.length > 0 && ( - - - - - - - - {userTeams.length === 1 ? 'Team' : 'Teams'} - - )} @@ -148,6 +125,35 @@ function Layout({ children }: LayoutProps) { )}
+ setShowUserMenu(false)} + > + + + + + + + Dashboard + + {userTeams.length > 0 && ( + setShowUserMenu(false)} + > + + + + + + + {userTeams.length === 1 ? 'Team' : 'Teams'} + + )} +