-
Notifications
You must be signed in to change notification settings - Fork 88
/
nav.js
62 lines (62 loc) · 1.27 KB
/
nav.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
module.exports = [
{
text: 'Documentation',
link: '/introduction.md'
},
{
text: 'Examples',
items: [
{
text: 'Overview',
link: '/examples'
},
{
text: 'Built with AssemblyScript',
link: '/built-with-assemblyscript'
}
]
},
{
text: 'Community',
items: [
{
text: 'Contributing guidelines',
link: 'https://github.com/AssemblyScript/assemblyscript/blob/main/CONTRIBUTING.md'
},
{
text: 'Code of Conduct',
link: 'https://github.com/AssemblyScript/assemblyscript/blob/main/CODE_OF_CONDUCT.md'
},
{
text: 'Social',
items: [
{
text: 'Twitter',
link: 'https://twitter.com/AssemblyScript'
},
{
text: 'Discord',
link: 'https://discord.gg/assemblyscript'
}
]
},
{
text: 'Q&A',
items: [
{
text: 'Stack Overflow',
link: 'https://stackoverflow.com/questions/tagged/assemblyscript'
}
]
}
]
},
{
text: 'Support us',
link: 'https://opencollective.com/assemblyscript'
},
{
text: 'GitHub',
link: 'https://github.com/AssemblyScript'
},
]