-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.js
102 lines (102 loc) · 2.08 KB
/
sidebars.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
module.exports = {
guidesSidebar: [
{
collapsed: false,
type: 'category',
label: 'Getting Started',
items: [
{
type: 'doc',
id: 'guides/render-your-first-scene',
},
{
type: 'doc',
id: 'guides/import-data',
},
{
type: 'doc',
id: 'guides/build-your-first-app',
},
{
type: 'doc',
id: 'guides/customize-your-scene',
},
],
},
{
collapsed: false,
type: 'category',
label: 'API Advanced Steps',
items: [
{
type: 'doc',
id: 'guides/postman-quick-start',
},
{
type: 'doc',
id: 'guides/authentication',
},
{
type: 'doc',
id: 'guides/import-data-with-api',
},
{
type: 'doc',
id: 'guides/import-metadata',
},
{
type: 'doc',
id: 'guides/render-static-scenes',
},
{
type: 'doc',
id: 'guides/webhook-events',
},
{
type: 'doc',
id: 'guides/sync-scenes-to-connect',
},
],
},
{
collapsed: false,
type: 'category',
label: 'Reference',
items: [
{
type: 'doc',
id: 'guides/install-sdk',
},
{
type: 'doc',
id: 'guides/browser-compatibility',
},
{
type: 'doc',
id: 'guides/supported-file-formats',
},
{
type: 'doc',
id: 'guides/platform-architecture',
},
{
type: 'doc',
id: 'guides/model-database',
},
{
type: 'doc',
id: 'guides/transformation-matrices',
},
{
type: 'link',
label: 'UI Component examples',
href: 'https://github.com/Vertexvis/vertex-web-sdk/tree/master/examples',
},
{
type: 'doc',
id: 'guides/glossary',
},
],
},
],
};