From fadb80c5042be0607a183557cf19c4ab1380fa83 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Mon, 23 Mar 2026 11:08:46 +0000 Subject: [PATCH] [#260] Add "$PLOT" link to NavBar Adds $PLOT as a nav link pointing to /token page, consistent with existing nav link styling and responsive behavior. Fixes #260 Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/NavBar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx index b579a879..a92155ab 100644 --- a/src/components/NavBar.tsx +++ b/src/components/NavBar.tsx @@ -10,6 +10,7 @@ const NAV_LINKS = [ { href: "/dashboard/writer", label: "Writer" }, { href: "/dashboard/reader", label: "Reader" }, { href: "/agents", label: "Agents" }, + { href: "/token", label: "$PLOT" }, ] as const; export function NavBar() {