-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsidebars-guided-project.js
More file actions
46 lines (44 loc) · 1.25 KB
/
sidebars-guided-project.js
File metadata and controls
46 lines (44 loc) · 1.25 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
44
45
46
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// Define the sidebar structure for Guided Project
guidedProjectSidebar: [
{
type: 'category',
label: 'Guided Project',
link: {
type: 'doc',
id: 'index',
},
items: [
'Installation_Guide',
{
type: 'doc',
id: 'all_resources',
label: 'All Resources',
},
{
type: 'category',
label: 'Frontend',
items: [
{
type: 'autogenerated',
dirName: 'Frontend'
},
],
},
{
type: 'category',
label: 'Backend',
items: [
{
type: 'autogenerated',
dirName: 'Backend',
},
],
},
'Bonus',
],
},
],
};
module.exports = sidebars;