From 7430e4ffe0564fdc441c89c82db639b8d4aae1c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Thu, 9 Apr 2026 00:24:33 +0100 Subject: [PATCH] =?UTF-8?q?fix(web):=20header=20nav=20links=20=E2=86=92=20?= =?UTF-8?q?real=20pages=20(docs,=20blog,=20about,=20changelog)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/web/src/modules/marketing/layout/header/header.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web/src/modules/marketing/layout/header/header.tsx b/apps/web/src/modules/marketing/layout/header/header.tsx index faf395e..c23a822 100644 --- a/apps/web/src/modules/marketing/layout/header/header.tsx +++ b/apps/web/src/modules/marketing/layout/header/header.tsx @@ -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";