Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/docs-products.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
type ProductLabels = { short: string; long: string; hidden?: boolean };

const LABELS: Record<string, ProductLabels> = {
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' },
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
Loading