summaryrefslogtreecommitdiff
path: root/makima/frontend/src/components
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-02-09 01:30:15 +0000
committersoryu <soryu@soryu.co>2026-02-09 01:30:15 +0000
commit9eb28de59b3b3815fc0eb15b37efcb07d51b8e96 (patch)
treee9fb360b2b2c4e4ba4a5cd7ee0f61add62a4aeb5 /makima/frontend/src/components
parent0d1f90948bc0d18ecde9cc95d5082e12143271f2 (diff)
downloadsoryu-9eb28de59b3b3815fc0eb15b37efcb07d51b8e96.tar.gz
soryu-9eb28de59b3b3815fc0eb15b37efcb07d51b8e96.zip
Move directive tab in navbar and change contract creation UI
Diffstat (limited to 'makima/frontend/src/components')
-rw-r--r--makima/frontend/src/components/NavStrip.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/makima/frontend/src/components/NavStrip.tsx b/makima/frontend/src/components/NavStrip.tsx
index 46fef7a..9bb7777 100644
--- a/makima/frontend/src/components/NavStrip.tsx
+++ b/makima/frontend/src/components/NavStrip.tsx
@@ -10,10 +10,10 @@ interface NavLink {
const NAV_LINKS: NavLink[] = [
{ label: "Listen", href: "/listen" },
+ { label: "Directives", href: "/directives", requiresAuth: true },
{ label: "Contracts", href: "/contracts", requiresAuth: true },
{ label: "Board", href: "/workflow", requiresAuth: true },
{ label: "Mesh", href: "/mesh", requiresAuth: true },
- { label: "Directives", href: "/directives", requiresAuth: true },
{ label: "History", href: "/history", requiresAuth: true },
];