-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar-menu.js
122 lines (122 loc) · 4.31 KB
/
sidebar-menu.js
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
export const sidebar = [
// {
// text: "About",
// link: "/about",
// },
// {
// text: "Frequently Asked Questions",
// link: "/faqs",
// },
// { text: "Product Tour", link: "/tour" },
{ text: "Beginner Tutorial", link: "/docs/guide/five-minute-tutorial" },
{ text: "Team", link: "/team" },
{
text: "Feature Articles",
link: "/docs/articles/articles-index",
},
{
text: "User Guide",
collapsed: false,
items: [
{
text: "Introduction",
link: "/docs/guide/introduction",
},
{ text: "Installation", link: "/docs/guide/installation" },
{
text: "General Settings",
link: "/docs/guide/general-settings",
},
{
text: "Register with describo.cloud",
link: "/docs/guide/register",
},
{
text: "Purchase Credits",
link: "/docs/guide/purchase-credits",
},
{
text: "Cloud Services and Data Processing",
link: "/docs/guide/data-processing",
},
{
text: "Working with your data",
link: "/docs/guide/working-with-a-crate",
},
{
text: "Creating a knowledge base",
link: "/docs/guide/creating-a-knowledgebase",
},
{
text: "Browsing your data",
link: "/docs/guide/browse",
},
{
text: "Transforming your content",
link: "/docs/guide/transforming-content",
},
{
text: "Content Transcription and Entity Markup",
link: "/docs/guide/transcribing-content",
},
{
text: "Using the Assistant when transcribing",
link: "/docs/guide/transcribing-content-assistant",
},
{
text: "Assistant enabled e-discovery",
link: "/docs/guide/assistant-supported-discovery",
},
{
text: "Visualisation",
link: "/docs/guide/visualising-the-structure",
},
{
text: "Tips for using the Assistant",
link: "/docs/guide/prompt-engineering",
},
{
text: "Creating a Vocabulary",
link: "/docs/guide/vocabulary",
},
{
text: "Glossary",
link: "/docs/guide/glossary",
},
],
},
{
text: "Profiles",
collapsed: true,
items: [
{ text: "Introduction", link: "/docs/profiles/introduction" },
{ text: "Profile Structure", link: "/docs/profiles/profile-structure" },
{ text: "Context", link: "/docs/profiles/contexts" },
{ text: "Layouts", link: "/docs/profiles/layouts" },
{ text: "Associations", link: "/docs/profiles/associations" },
{ text: "Localisation", link: "/docs/profiles/localisation" },
{ text: "Resolve", link: "/docs/profiles/resolve" },
{ text: "Classes and Inputs", link: "/docs/profiles/classes-and-inputs" },
{ text: "Lookups", link: "/docs/profiles/lookups" },
{ text: "Data Types", link: "/docs/profiles/types" },
],
},
{
text: "Component",
collapsed: true,
items: [
{ text: "Introduction", link: "/docs/component/introduction" },
{ text: "Get Started", link: "/docs/component/get-started" },
{
text: "Usage & Configuration",
link: "/docs/component/usage-and-configuration",
},
{ text: "Data Validation", link: "/docs/component/validation" },
{ text: "Identifiers", link: "/docs/component/identifiers" },
{ text: "Advanced Usage", link: "/docs/component/advanced-usage" },
{ text: "Crate Manager", link: "/docs/component/crate-manager" },
{ text: "Internationalisation", link: "/docs/component/internationalisation" },
{ text: "Themes", link: "/docs/component/themes" },
],
},
];