From 042f0c0b98c8fe7b7012a1933f5ef2ea7f64a72b Mon Sep 17 00:00:00 2001 From: Eason WaveKat Date: Sun, 7 Jun 2026 15:13:22 +1200 Subject: [PATCH] feat(docs): list Voice on the docs index Remove the pre-launch hidden flag so WaveKat Voice appears on /docs/ and in the docs sidebar, and fix the card's platform claim to match voice/index.astro (Mac and Linux today; no Windows claim). Co-Authored-By: Claude Opus 4.8 (1M context) --- src/lib/docs-products.ts | 2 +- src/pages/docs/index.astro | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/docs-products.ts b/src/lib/docs-products.ts index a2c6ecc..17a74ad 100644 --- a/src/lib/docs-products.ts +++ b/src/lib/docs-products.ts @@ -7,7 +7,7 @@ type ProductLabels = { short: string; long: string; hidden?: boolean }; const LABELS: Record = { - voice: { short: 'Voice', long: 'WaveKat Voice', hidden: true }, + voice: { short: 'Voice', long: 'WaveKat Voice' }, cli: { short: 'CLI', long: 'WaveKat CLI' }, lab: { short: 'Lab', long: 'WaveKat Lab' }, vad: { short: 'VAD', long: 'WaveKat VAD' }, diff --git a/src/pages/docs/index.astro b/src/pages/docs/index.astro index bb5d6dc..c680b5e 100644 --- a/src/pages/docs/index.astro +++ b/src/pages/docs/index.astro @@ -16,7 +16,7 @@ type Product = { const PRODUCTS: Product[] = [ { slug: 'cli', label: 'CLI', description: 'Terminal client (wk) for the WaveKat platform.', href: '/docs/cli/' }, - { slug: 'voice', label: 'Voice', description: 'Desktop SIP softphone — call from your Mac, Windows, or Linux.', href: '/docs/voice/' }, + { slug: 'voice', label: 'Voice', description: 'Desktop SIP softphone — call from your Mac or Linux desktop.', href: '/docs/voice/' }, ]; const entries = await getCollection('docs');