fix(web): header nav links → real pages (docs, blog, about, changelog)
Some checks failed
CI / Lint (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Broker tests (Postgres) (push) Has been cancelled
CI / Docker build (linux/amd64) (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alejandro Gutiérrez
2026-04-09 00:24:33 +01:00
parent d72e49b8fd
commit 7430e4ffe0

View File

@@ -1,10 +1,10 @@
import Link from "next/link";
const NAV = [
{ label: "Getting Started", href: "/getting-started" },
{ label: "Docs", href: "#docs" },
{ label: "Pricing", href: "#pricing" },
{ label: "Changelog", href: "#changelog" },
{ label: "Docs", href: "https://github.com/alezmad/claudemesh-cli#readme" },
{ label: "Blog", href: "/blog" },
{ label: "About", href: "/about" },
{ label: "Changelog", href: "/changelog" },
] as const;
const OSS_REPO_URL = "https://github.com/alezmad/claudemesh-cli";