From cb3f49bf91e7b79f60a384ef68c787a01fd9fb5b Mon Sep 17 00:00:00 2001
From: Guanzhou Song
Date: Mon, 3 Aug 2026 15:17:12 -0400
Subject: [PATCH] Point the quick start links at the quick start
#135 fixed the 404 behind this constant by adding the missing version
segment, so the links work now, but all four call sites label themselves
"Open quick start" and land on the documentation home instead - the
reader still has to find the quick start from there.
Renamed the constant for what every caller actually wants and pointed it
at the kind quick start, which is the operator's canonical local
walkthrough. Linking the page directly also skips the redirect stubs at
/documentdb-kubernetes-operator/ and .../latest/, which are meta
refreshes that only browsers follow.
No call site is left wanting the docs home, so the old name is gone
rather than kept as a second export.
---
app/kubernetes-operator/page.tsx | 8 ++++----
app/page.tsx | 4 ++--
app/services/externalLinks.ts | 12 ++++++++++--
3 files changed, 16 insertions(+), 8 deletions(-)
diff --git a/app/kubernetes-operator/page.tsx b/app/kubernetes-operator/page.tsx
index c62f7c5..a611a2e 100644
--- a/app/kubernetes-operator/page.tsx
+++ b/app/kubernetes-operator/page.tsx
@@ -1,7 +1,7 @@
import CommandSnippet from "../components/CommandSnippet";
import { getMetadata } from "../services/metadataService";
import {
- documentdbKubernetesOperatorDocsUrl,
+ documentdbKubernetesOperatorQuickStartUrl,
documentdbKubernetesOperatorGitHubUrl,
} from "../services/externalLinks";
@@ -278,7 +278,7 @@ export default function KubernetesOperatorPage() {