-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsidebars.ts
More file actions
67 lines (66 loc) · 1.83 KB
/
sidebars.ts
File metadata and controls
67 lines (66 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import apiRefSidebar from "./docs/api-ref/sidebar";
import deploymentsSidebar from "./docs/deployments/sidebar";
import gettingStartedSidebar from "./docs/get-started/sidebar";
import integrationsAndSDKSidebar from "./docs/integrations-and-sdks/sidebar";
import speechToTextSidebar from "./docs/speech-to-text/sidebar";
import textToSpeechSidebar from "./docs/text-to-speech/sidebar";
import voiceAgentsSidebar from "./docs/voice-agents/sidebar";
export default {
docs: [
gettingStartedSidebar,
speechToTextSidebar,
textToSpeechSidebar,
voiceAgentsSidebar,
integrationsAndSDKSidebar,
deploymentsSidebar,
{
type: "category",
label: "Developer Resources",
collapsible: false,
collapsed: false,
items: [
{
type: "link",
href: "https://github.com/speechmatics",
label: "GitHub",
},
{
type: "link",
href: "https://github.com/speechmatics/speechmatics-academy",
label: "Academy",
},
{
type: "link",
href: "https://discord.gg/wHQaMFzQJX",
label: "Discord",
},
{
type: "link",
href: "https://status.speechmatics.com",
label: "Status",
},
{
type: "link",
label: "Support",
href: "https://support.speechmatics.com/hc/en-gb",
},
{
type: "link",
label: "Feature request",
href: "https://github.com/orgs/speechmatics/discussions/new?category=ideas-suggestions",
},
{
type: "link",
label: "Blog",
href: "https://blog.speechmatics.com",
},
{
type: "link",
label: "Website",
href: "https://speechmatics.com",
},
],
},
],
apiRef: apiRefSidebar,
};