forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackup-sidebars-community.js
105 lines (104 loc) · 3.65 KB
/
backup-sidebars-community.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
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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebarsCommunity = {
communitySidebar: [
{
type: "doc",
id: "creator-fund",
label: "💰 Creator Fund",
},
{
type: "category",
label: "📺 Stream Notes",
items: [
{
type: "category",
label: "November 2024",
items: [
{
type: "doc",
id: "streams/2024-11-29",
label: "What Did You Get Done This Week 3",
},
{
type: "doc",
id: "streams/2024-11-28",
label: "World Builders Panel",
},
{
type: "doc",
id: "streams/2024-11-26",
label: "AI Agent Dev School 1",
},
{
type: "doc",
id: "streams/2024-11-24",
label: "Hats Protocol Presentation",
},
{
type: "doc",
id: "streams/2024-11-22",
label: "What Did You Get Done This Week 2",
},
{
type: "doc",
id: "streams/2024-11-21",
label: "The Delphi Podcast",
},
{
type: "doc",
id: "streams/2024-11-15",
label: "What Did You Get Done This Week 1",
},
{
type: "doc",
id: "streams/2024-11-10",
label: "Threadguy x Shaw Interview",
},
{
type: "doc",
id: "streams/2024-11-08",
label: "X: Memes, AI Agents, and DAOs",
},
{
type: "doc",
id: "streams/2024-11-06",
label: "Discord Development Stream",
},
],
},
{
type: "category",
label: "October 2024",
items: [
{
type: "doc",
id: "streams/2024-10-29",
label: "X: AI Agents & Crypto",
},
{
type: "doc",
id: "streams/2024-10-27",
label: "X: Building Autonomous Agents",
},
{
type: "doc",
id: "streams/2024-10-25",
label: "X: Eliza Framework",
},
],
},
],
},
{
type: "doc",
id: "faq",
label: "❓ FAQ",
},
{
type: "doc",
id: "contributing",
label: "🤝 Contributing",
},
],
};
export default sidebarsCommunity;