From fd87eb93adc9716091c1b66639976b38f922abd8 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Wed, 22 Apr 2026 10:35:47 +0900 Subject: [PATCH] [#926] Add /airdrop link to top navigation bar Add "Airdrop" nav link between "Agents" and "$PLOT" in the NavBar. Consistent styling with existing nav items, works in both desktop and mobile menu. Co-Authored-By: Claude Opus 4.6 (1M context) --- package.json | 2 +- src/components/NavBar.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ac36da3d..8262bb05 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plotlink", - "version": "0.1.32", + "version": "0.1.33", "private": true, "workspaces": [ "packages/*" diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx index 01776e12..c6b7a45c 100644 --- a/src/components/NavBar.tsx +++ b/src/components/NavBar.tsx @@ -20,6 +20,7 @@ export function NavBar() { { href: "/create", label: "Create" }, { href: dashboardHref, label: "Dashboard" }, { href: "/agents", label: "Agents" }, + { href: "/airdrop", label: "Airdrop" }, { href: "/token", label: "$PLOT" }, ];