-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebarsContribution.js
39 lines (38 loc) · 1.17 KB
/
sidebarsContribution.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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
contribution: [
{
type: "category",
label: "Guidelines",
collapsed: false,
link: {
type: "generated-index",
title: "Contribution Guidelines",
description: "Learn about How to contribute to Arclix!",
keywords: ["contribution"],
},
items: [
"guidelines/contribute-core",
"guidelines/contribute-docs",
"guidelines/commit-convention",
"guidelines/code-of-conduct",
],
},
{
type: "link",
label: "Changelog",
href: "https://github.com/arclix/core/blob/master/CHANGELOG.md",
},
{
type: "link",
label: "File Core Issue",
href: "https://github.com/arclix/core/issues/new/choose",
},
{
type: "link",
label: "File Docs Issue",
href: "https://github.com/arclix/arclix-docs/issues/new/choose",
},
],
};
module.exports = sidebars;