From 30d1f9b94906fa3ad02ffd60fd61a2fc7072ecd7 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Tue, 15 Jul 2025 16:16:36 +0000 Subject: [PATCH] feat(client): make a fancy navbar for the left side --- frontend/src/components/Layout/AppLayout.tsx | 45 +++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Layout/AppLayout.tsx b/frontend/src/components/Layout/AppLayout.tsx index 454bb01..f3b35d6 100644 --- a/frontend/src/components/Layout/AppLayout.tsx +++ b/frontend/src/components/Layout/AppLayout.tsx @@ -209,7 +209,50 @@ const AppLayout: React.FC = ({ children }) => { {/* Navigation */} - + {navigationItems.map((item) => { const isActive = location.pathname === item.path; const Icon = item.icon;