From c5a54241b6820a1b3f56eeebbd85a76b12d10c5e Mon Sep 17 00:00:00 2001 From: soryu Date: Tue, 17 Feb 2026 01:54:50 +0000 Subject: feat: soryu-co/soryu: Reorder navigation: move Orders before Contracts --- makima/frontend/src/components/NavStrip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makima/frontend/src/components/NavStrip.tsx b/makima/frontend/src/components/NavStrip.tsx index 5aba6a3..117f4e1 100644 --- a/makima/frontend/src/components/NavStrip.tsx +++ b/makima/frontend/src/components/NavStrip.tsx @@ -11,8 +11,8 @@ interface NavLink { const NAV_LINKS: NavLink[] = [ { label: "Listen", href: "/listen" }, { label: "Directives", href: "/directives", requiresAuth: true }, - { label: "Contracts", href: "/contracts", requiresAuth: true }, { label: "Orders", href: "/orders", requiresAuth: true }, + { label: "Contracts", href: "/contracts", requiresAuth: true }, { label: "Mesh", href: "/mesh", requiresAuth: true }, { label: "History", href: "/history", requiresAuth: true }, ]; -- cgit v1.2.3