From 6721003572b714b855e48f92834bef11af8121ae Mon Sep 17 00:00:00 2001 From: Madhura68 Date: Mon, 4 May 2026 21:43:51 +0200 Subject: [PATCH] =?UTF-8?q?ui:=20nav=20entry=20"Idee=C3=ABn"=20between=20I?= =?UTF-8?q?nsights=20and=20Todo's=20(M12=20T-515)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit components/shared/nav-bar.tsx: - New nav-link to /ideas with active-state on pathname.startsWith('/ideas') - Placement: between Insights and Todo's — matches the M12 plan ("direct boven Todo's") - No icon (existing nav uses text-only links; deviation from plan's Lightbulb spec for visual consistency with the rest of the nav) Tests: 546/546 still green. Co-Authored-By: Claude Opus 4.7 (1M context) --- components/shared/nav-bar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/shared/nav-bar.tsx b/components/shared/nav-bar.tsx index 7204cf0..1749134 100644 --- a/components/shared/nav-bar.tsx +++ b/components/shared/nav-bar.tsx @@ -140,6 +140,7 @@ export function NavBar({ ) : disabledSpan('Solo')} {navLink('/insights', 'Insights', pathname.startsWith('/insights'))} + {navLink('/ideas', 'Ideeën', pathname.startsWith('/ideas'))} {navLink('/todos', "Todo's", pathname.startsWith('/todos'))}