-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.tsx
53 lines (49 loc) · 1.25 KB
/
tree.tsx
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
export type Page = {
path: string
children: Page[]
}
export type Section = {
name: string
pages: string[]
}
export const tableOfContents: Section[] = [
{
name: "🚀 Quick Start", pages: [
"deployment",
"changelog"
]
},
{
name: "How it works", pages: [
"how-it-works/architecture",
"how-it-works/directories-structure",
"how-it-works/pipelines"
]
},
{
name: "Sending data", pages: [
"sending-data/javascript-reference",
"sending-data/api"
]
},
{
name: "Configuration", pages: [
"configuration",
"destinations-configuration",
"sources-configuration"
]
},
{
name: "Features", pages: [
"other-features/scaling-eventnative",
"other-features/segment-compatibility",
"other-features/dry-run-events",
"other-features/retrospective-user-recognition",
"other-features/events-cache",
"other-features/geo-data-resolution",
"other-features/typecast",
"other-features/admin-endpoints",
"other-features/application-metrics",
]
}
]