-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathsidebarsCommunity.js
More file actions
43 lines (43 loc) · 1.18 KB
/
sidebarsCommunity.js
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
export default {
community: [
// {
// type: 'autogenerated',
// dirName: '.',
// },
{ type: 'doc', id: 'support' },
{
type: 'category',
label: 'How to Contribute',
items: [
{ type: 'doc', id: 'how-to-contribute/getting-started' },
{ type: 'doc', id: 'how-to-contribute/ways-to-contribute' },
{ type: 'doc', id: 'how-to-contribute/pull-request-conventions' },
],
},
{ type: 'doc', id: 'governance' },
{ type: 'doc', id: 'team' },
// { type: 'doc', id: 'resources' },
// { type: 'doc', id: 'contributing' },
// {
// type: 'link',
// href: '/changelog',
// label: 'Changelog',
// },
// {
// type: 'link',
// href: '/feature-requests',
// label: 'Feature Requests',
// },
{
type: 'link',
label: 'Chat with us on Slack',
href: 'https://communityinviter.com/apps/cloud-native/cncf',
},
{
type: 'link',
label: 'Code of Conduct',
href: 'https://github.com/uber/.github/blob/dcd96c52f2d1d839208315a2572cf37f48e52e96/CODE_OF_CONDUCT.md',
},
],
};