From 09332aadf87e47e3a6b3ece27c6d756aacb0172c Mon Sep 17 00:00:00 2001 From: Pratyush Sharma <56130065+pratyush618@users.noreply.github.com> Date: Sun, 21 Jun 2026 12:00:24 +0530 Subject: [PATCH] fix(docs): link shared architecture/resources pages at root Nav, footer, and the comparison CTA pointed at /python/* paths that only exist as redirect stubs, so every click bounced to the real shared page. Architecture and resources are SDK-agnostic (Python + Node), so link their canonical root URLs directly. --- docs/app/components/landing/footer.tsx | 8 ++++---- docs/app/components/landing/sections.tsx | 2 +- docs/app/components/ui/site-nav.tsx | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/app/components/landing/footer.tsx b/docs/app/components/landing/footer.tsx index 8b0ca040..ac0e5e3a 100644 --- a/docs/app/components/landing/footer.tsx +++ b/docs/app/components/landing/footer.tsx @@ -9,7 +9,7 @@ const COLS = [ href: "/python/getting-started/installation", }, { label: "Guides", href: "/python/guides" }, - { label: "Architecture", href: "/python/architecture" }, + { label: "Architecture", href: "/architecture" }, { label: "API Reference", href: "/python/api-reference" }, ], }, @@ -17,9 +17,9 @@ const COLS = [ title: "More", links: [ { label: "Examples", href: "/python/more/examples" }, - { label: "Celery comparison", href: "/python/more/comparison" }, - { label: "FAQ", href: "/python/more/faq" }, - { label: "Changelog", href: "/python/more/changelog" }, + { label: "Celery comparison", href: "/resources/comparison" }, + { label: "FAQ", href: "/resources/faq" }, + { label: "Changelog", href: "/resources/changelog" }, ], }, { diff --git a/docs/app/components/landing/sections.tsx b/docs/app/components/landing/sections.tsx index dedc06ef..6e0fbcdb 100644 --- a/docs/app/components/landing/sections.tsx +++ b/docs/app/components/landing/sections.tsx @@ -400,7 +400,7 @@ export function CTA() { Start the quickstart → - + See the full comparison diff --git a/docs/app/components/ui/site-nav.tsx b/docs/app/components/ui/site-nav.tsx index 0f8c4969..fdb251ce 100644 --- a/docs/app/components/ui/site-nav.tsx +++ b/docs/app/components/ui/site-nav.tsx @@ -20,9 +20,9 @@ function GithubMark() { const LINKS = [ { label: "Getting Started", href: "/python/getting-started/installation" }, { label: "Guides", href: "/python/guides" }, - { label: "Architecture", href: "/python/architecture" }, + { label: "Architecture", href: "/architecture" }, { label: "API", href: "/python/api-reference" }, - { label: "Changelog", href: "/python/more/changelog" }, + { label: "Changelog", href: "/resources/changelog" }, ]; /** Sticky top navigation, shared by the landing and docs shells. */