-
Notifications
You must be signed in to change notification settings - Fork 44
/
sidebars.js
103 lines (103 loc) · 2 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
103
module.exports = {
docs: [
{
type: 'doc',
id: 'home'
},
{
type: 'doc',
id: 'installation'
},
{
type: 'doc',
id: 'installation-v1-1-x'
},
{
type: 'category',
label: 'Image Tracking Quick Start',
collapsed: true,
items: [
'quick-start/overview',
'quick-start/compile',
'quick-start/webpage',
'quick-start/run',
'quick-start/assets',
'quick-start/wrapup',
'quick-start/tracking-config',
]
},
{
type: 'category',
label: 'Image Tracking Examples',
collapsed: true,
items: [
'examples/summary',
'examples/minimal',
'examples/basic',
'examples/multi-targets',
'examples/multi-tracks',
'examples/custom-ui',
'examples/events-handling',
'examples/interative',
]
},
{
type: 'category',
label: 'Face Tracking Quick Start',
collapsed: true,
items: [
'face-tracking-quick-start/overview',
'face-tracking-quick-start/webpage',
'face-tracking-quick-start/run',
'face-tracking-quick-start/assets',
'face-tracking-quick-start/occluder',
'face-tracking-quick-start/wrapup',
],
},
{
type: 'category',
label: 'Face Tracking Examples',
collapsed: true,
items: [
'face-tracking-examples/summary',
'face-tracking-examples/minimal',
'face-tracking-examples/tryon',
'face-tracking-examples/events-handling',
],
},
{
type: 'category',
label: 'More Examples',
collapsed: true,
items: [
'more-examples/react',
'more-examples/threejs-image',
'more-examples/threejs-face',
'more-examples/threejs-face-facemesh',
'more-examples/threejs-face-blendshapes',
]
},
/*
{
type: 'doc',
id: 'core-api'
},
*/
{
type: 'category',
label: 'Tools',
collapsed: true,
items: [
'tools/compile'
]
},
/*
{
type: 'category',
label: 'Default',
collapsed: false,
items: ['doc1', 'doc2', 'doc3', 'mdx']
}
*/
],
};