forked from speechmatics/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
55 lines (54 loc) · 1.48 KB
/
sidebars.ts
File metadata and controls
55 lines (54 loc) · 1.48 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
import apiRefSidebar from "./docs/api-ref/sidebar";
import deploymentsSidebar from "./docs/deployments/sidebar";
import gettingStartedSidebar from "./docs/get-started/sidebar";
import speechToTextSidebar from "./docs/speech-to-text/sidebar";
import textToSpeechSidebar from "./docs/text-to-speech/sidebar";
import voiceAgentsFlowSidebar from "./docs/voice-agents-flow/sidebar";
export default {
docs: [
gettingStartedSidebar,
speechToTextSidebar,
textToSpeechSidebar,
voiceAgentsFlowSidebar,
deploymentsSidebar,
{
type: "category",
label: "Developer Resources",
collapsible: false,
collapsed: false,
items: [
{
type: "link",
href: "https://github.com/speechmatics",
label: "GitHub",
},
{
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,
};