From e436ced95be9207506148785266617bce7a9901a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 31 Aug 2026 19:43:05 +0200 Subject: [PATCH] Move Devices before Stats in the nav order Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01WzyfRyA7h5rs5SCAahLAWd --- components/layout/NavBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/NavBar.tsx b/components/layout/NavBar.tsx index 6e6a4df..86e2d2a 100644 --- a/components/layout/NavBar.tsx +++ b/components/layout/NavBar.tsx @@ -15,8 +15,8 @@ const LINKS = [ { href: "/", label: "Dashboard" }, { href: "/control", label: "Control" }, { href: "/sessions", label: "Sessions" }, - { href: "/stats", label: "Stats" }, { href: "/devices", label: "Devices" }, + { href: "/stats", label: "Stats" }, ]; function isActive(pathname: string, href: string): boolean {