-
Notifications
You must be signed in to change notification settings - Fork 86
/
docs.config.js
101 lines (101 loc) · 2.61 KB
/
docs.config.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
module.exports = {
DOCS_URL: "https://docs.nativebase.io",
parentUrl: "https://nativebase.io/",
indexSlugFileName: "getting-started",
docsEntryPoint: "docs",
REPO_BRANCH: "master",
REPO_LINK: "https://github.com/GeekyAnts/NativeBase",
versionMap: {
"3.0.x": "3.0.7",
"3.1.x": "3.1.0",
"3.2.x": "3.2.2",
"3.3.x": "3.3.10",
"3.4.x": "3.4.19",
},
componentOfTheWeek: {
switch: "https://www.youtube.com/embed/VGUhi8IQHDw",
checkbox: "https://www.youtube.com/embed/NxqKOiLbpZo",
input: "https://www.youtube.com/embed/oJWnEb0K0Aw",
button: "https://www.youtube.com/embed/BMAF6GLBvYU",
},
footer: [
{
type: "heading",
title: "Docs",
pages: [
{
id: "introduction",
title: "Introduction",
link: "/",
linkType: "internal",
},
{
id: "examples",
title: "Examples",
link: "/todo-example",
linkType: "internal",
},
],
},
{
type: "heading",
title: "Community",
pages: [
{
id: "introduction",
title: "Twitter",
link: "https://twitter.com/nativebase",
linkType: "external",
},
{
id: "examples",
title: "StackOverflow",
link: "https://stackoverflow.com/questions/tagged/native-base",
linkType: "external",
},
{
id: "introduction",
title: "Discord",
link: "https://discord.com/invite/TSgCw2UPmb",
linkType: "external",
},
{
id: "examples",
title: "VS Code Extension",
link: "https://marketplace.visualstudio.com/items?itemName=NativeBase.nativebase-v3-vscode-extension&ssr=false#review-details",
linkType: "external",
},
],
},
{
type: "heading",
title: "More",
pages: [
{
id: "introduction",
title: "Github",
link: "https://github.com/GeekyAnts/NativeBase",
linkType: "external",
},
{
id: "examples",
title: "Contribution Guidelines",
link: "https://github.com/GeekyAnts/NativeBase/blob/master/CONTRIBUTING.md",
linkType: "external",
},
{
id: "introduction",
title: "Privacy Policy",
link: "https://nativebase.io/privacy-policy",
linkType: "external",
},
{
id: "examples",
title: "Cookie Policy",
link: "https://nativebase.io/cookie-policy",
linkType: "external",
},
],
},
],
};