-
Notifications
You must be signed in to change notification settings - Fork 4
/
menu.js
70 lines (69 loc) · 2.34 KB
/
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
var menu = [
{
name:"FAQ",
label:"faq",
items:[
{ link:"general", name:"General" },
{ link:"installation", name:"Installation" },
{ link:"licencing", name:"Licencing" },
{ link:"technical", name:"Technical" }
]
},
{
name:"Documentation",
label:"reference",
items:[
{ link:"features", name:"Features" },
{ link:"user-guide", name:"User guide" },
{ link:"drill", name:"Countly Drill"},
{ link:"session-drill", name:"Countly Session Drill"},
{ link:"funnels", name:"Countly Funnels"},
{ link:"revenue-analytics", name:"Revenue analytics"},
{ link:"server-api", name:"Server API" },
{ link:"custom-events", name:"Custom events" },
{ link:"sdk-methods-for-custom-events", name:"Custom events SDK methods" },
{ link:"increasing-performance", name:"Increasing performance" },
{ link:"contributing-to-countly", name:"Contributing to Countly" },
{ link:"contributors", name:"Contributors" },
{ link:"changelog", name:"Changelog" },
{ link:"roadmap", name:"Roadmap" },
// { link:"open-source-components", name:"Open source components" },
{ link:"translating-countly", name:"Translating Countly" },
{ link:"glossary", name:"Glossary" },
{ link:"useful-links", name:"Useful links" }
]
},
{
name:"References",
label:"references",
items:[
{ link:"datasheets", name:"Datasheets" },
{ link:"presentations", name:"Presentations" }
]
},
{
name:"Source",
label:"source",
items:[
{ link:"download-server", name:"Download Server" },
{ link:"download-sdk", name:"Download SDK" }
]
},
{
name:"Installation",
label:"installation",
items:[
{ link:"countly-server-installation", name:"Countly Server" },
{ link:"android", name:"Android SDK" },
{ link:"ios", name:"iOS / Mac OS X SDK" }
]
},
{
name:"Upgrading",
label:"upgrade",
items:[
{ link:"countly-server-upgrade", name:"Countly Server" }
]
}
];
module.exports = menu;