-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsidebars.js
More file actions
106 lines (101 loc) · 4 KB
/
Copy pathsidebars.js
File metadata and controls
106 lines (101 loc) · 4 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
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
102
103
104
105
106
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
'resources',
{
type: 'category',
label: '2026 Workshops',
collapsed: false,
items: [
{
type: 'category',
label: 'Hackathon 101',
link: { type: 'doc', id: 'Workshops/Hackathon 101/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/Hackathon 101' }],
},
{
type: 'category',
label: 'DevDay (Full Stack Project)',
items: [{ type: 'autogenerated', dirName: 'Workshops/Webapp-Setup' }],
},
{
type: 'category',
label: 'Agents and Tools',
link: { type: 'doc', id: 'Workshops/Agents and Tools/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/Agents and Tools' }],
},
{
type: 'category',
label: 'RAG',
link: { type: 'doc', id: 'Workshops/RAG/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/RAG' }],
},
{
type: 'category',
label: 'Vibe Coding',
link: { type: 'doc', id: 'Workshops/Vibe Coding/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/Vibe Coding' }],
},
{
type: 'category',
label: 'MongoDB',
link: { type: 'doc', id: 'Workshops/MongoDB/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/MongoDB' }],
},
{
type: 'category',
label: 'Pitching',
link: { type: 'doc', id: 'Workshops/Pitching/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/Pitching' }],
},
],
},
{
type: 'category',
label: 'Past Workshops',
collapsed: true,
items: [
{
type: 'category',
label: 'Github',
link: { type: 'doc', id: 'Workshops/Github/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/Github' }],
},
{
type: 'category',
label: 'React',
link: { type: 'doc', id: 'Workshops/React/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/React' }],
},
{
type: 'category',
label: 'Firebase',
link: { type: 'doc', id: 'Workshops/Firebase/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/Firebase' }],
},
{
type: 'category',
label: 'Advanced Styling',
link: { type: 'doc', id: 'Workshops/Advanced Styling/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/Advanced Styling' }],
},
{
type: 'category',
label: 'Computer Vision',
link: { type: 'doc', id: 'Workshops/Computer Vision/index' },
items: [{ type: 'autogenerated', dirName: 'Workshops/Computer Vision' }],
},
],
},
],
};
module.exports = sidebars;