-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsidebars-dayof.js
More file actions
119 lines (116 loc) · 3.94 KB
/
sidebars-dayof.js
File metadata and controls
119 lines (116 loc) · 3.94 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
107
108
109
110
111
112
113
114
115
116
117
118
119
// sidebars-dayof.js - Updated with clean titles
module.exports = {
dayOfSidebar: [
{
type: 'category',
label: 'HackUTD 2025: Lost in the Pages',
link: {
type: 'doc',
id: 'index',
},
items: [
{
type: 'category',
label: 'Essential Resources',
items: [
{
type: 'doc',
id: 'general-hackerpack',
label: 'Hackerpack',
},
{
type: 'doc',
id: 'devpost-guide',
label: 'Devpost Guide',
},
],
},
{
type: 'category',
label: 'Other Resources',
items: [
{
type: 'doc',
id: 'travel-guide',
label: 'Travel Guide',
},
{
type: 'doc',
id: 'mentor-guide',
label: 'Need a Mentor?',
},
{
type: 'doc',
id: 'judge-guide',
label: 'Submission & Judging Guide',
},
{
type: 'doc',
id: 'travel-reimbursement',
label: 'Travel Reimbursement',
},
{
type: 'doc',
id: 'points-guide',
label: 'Points Guide',
},
],
},
// Event Information
{
type: 'category',
label: 'Event Logistics',
items: [
{
type: 'doc',
id: 'venue-parking',
label: 'Venue & Parking',
},
{
type: 'doc',
id: 'prizes-challenges',
label: 'Prizes & Challenges',
},
],
},
// Workshops
{
type: 'category',
label: 'Workshops',
items: [
{
type: 'doc',
id: 'workshops/pnc',
label: 'PNC',
},
{
type: 'doc',
id: 'workshops/t-mobile',
label: 'T-Mobile',
},
{
type: 'doc',
id: 'workshops/goldman-sachs',
label: 'Goldman Sachs',
},
{
type: 'doc',
id: 'workshops/statefarm',
label: 'State Farm',
},
{
type: 'doc',
id: 'workshops/nmc',
label: 'NMC',
},
{
type: 'doc',
id: 'workshops/eog',
label: 'EOG',
},
],
},
],
},
],
};