-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolios.ts
256 lines (253 loc) · 8.33 KB
/
portfolios.ts
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
export type PortfolioData = {
name: string,
description: string,
members: PortfolioMember[],
};
export type PortfolioMember = {
name: string,
role: PortfolioRole,
imageUrl: string;
}
export enum PortfolioRole {
DIRECTOR = "Director",
SUBCOM = "Subcommittee",
}
export const PORTFOLIOS: PortfolioData[] = [
{
name: "Careers",
description: "Facilitates industry sponsor relations, as well as creating events focused on interpersonal development and networking.",
members: [
{
name: "Eric Kang",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Jasmine Xian",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Max Lee",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "Competitions",
description: "Organises a variety of contests to empower students beyond coursework and allow them meet others.",
members: [
{
name: "Aliff Azlan",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Haibing Wang",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Diego Untalan",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "Creative",
description: "Lays the groundwork for CSESoc's aesthetic branding, providing an outlet for creative expression.",
members: [
{
name: "Anna Wang",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Jordan Djamaan",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Shabinda Sarkaria",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "Digital",
description: "Expands CSESoc's vibrant community into the virtual world, running online events and managing our online spaces to make sure everyone feels welcomed in our community.",
members: [
{
name: "Amy Tian",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Brandon Tan",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "Education",
description: "Teaches interesting technical skills to the community, whether that's through workshops, articles, or programs.",
members: [
{
name: "Alina Jin",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "JJ Roberts-White",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Liam Smith",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "Events",
description: "Plans a diverse range of large-scale activities while focusing on creating an enjoyable and fun experiences for all participants!",
members: [
{
name: "Emma Nguyen",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Jalaj Jain",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Jenny Lee",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "HR",
description: "Fosters the internal culture of the internal/external team - bringing people together, encouraging a supportive environment and most of all - memories.",
members: [
{
name: "Aryan Chauhan",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Edwin Tang",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Jasmine Guan",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "IT",
description: "Oversees the development of the CSESoc's internal projects and plays an active role in the technical aspects of our society.",
members: [
{
name: "Derek Xu",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Dominic Cheung",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "Marketing",
description: "Promotes CSESoc on our social media as well as creating supplementary marketing material to engage our audience.",
members: [
{
name: "Aaron Lee",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Lisa Lin",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Zitian Qin",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "Media",
description: "Focuses on creating content for our CSESoc community and beyond to capture our diverse student voice.",
members: [
{
name: "Dylan Hu",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Gloria Xi",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Leo Ng Maisnam",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "Outreach",
description: "Creates inclusive and approachable events targeted towards overlooked and underrepresented students.",
members: [
{
name: "Joyce He",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Sapphire Wildie",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
{
name: "Socials",
description: "Organises approachable events targeted towards building an inclusive and welcoming community, to help build long-lasting friendships!",
members: [
{
name: "Davis Lim",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Jennifer Yu",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
{
name: "Susie Xia",
role: PortfolioRole.DIRECTOR,
imageUrl: "/images/members/blank-pfp.png",
},
],
},
];