-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMembers.astro
376 lines (360 loc) · 11 KB
/
Members.astro
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
---
import Image from "astro/components/Image.astro";
import MemberCard from "./ui/MemberCard.astro";
// Companies
import DatabricksLogo from "../../assets/companies/databricks.webp";
import NetflixLogo from "../../assets/companies/netflix.webp";
import MetaLogo from "../../assets/companies/meta.webp";
import StripeLogo from "../../assets/companies/stripe.webp";
import PineconeLogo from "../../assets/companies/pinecone.webp";
import AWSLogo from "../../assets/companies/aws.webp";
import AirbnbLogo from "../../assets/companies/airbnb.webp";
import MicrosoftLogo from "../../assets/companies/microsoft.webp";
// Board and Senior Developers
import JoshuaHeadshot from "../../assets/members/joshua.webp";
import LeoHeadshot from "../../assets/members/leo.webp";
import HangHeadshot from "../../assets/members/hang.webp";
import AnnaHeadshot from "../../assets/members/anna.webp";
import AndyHeadshot from "../../assets/members/andy.webp";
// Designers
import AngelinaHeadshot from "../../assets/members/angelina.webp";
import EricaHeadshot from "../../assets/members/erica.webp";
// Junior Developers
import JuliaHeadshot from "../../assets/members/julia.webp";
import AmmaarHeadshot from "../../assets/members/ammaar.webp";
import BenHeadshot from "../../assets/members/ben.webp";
import EmilyHeadshot from "../../assets/members/emily.webp";
import GlenHeadshot from "../../assets/members/glen.webp";
import GraceHeadshot from "../../assets/members/grace.webp";
import KeithHeadshot from "../../assets/members/keith.webp";
import KevinHeadshot from "../../assets/members/kevin.webp";
import MarvinHeadshot from "../../assets/members/marvin.webp";
import MylesHeadshot from "../../assets/members/myles.webp";
import RyanHeadshot from "../../assets/members/ryan.webp";
import OyuHeadshot from "../../assets/members/oyu.webp";
import CallumHeadshot from "../../assets/members/callum.webp";
import KevinYangHeadshot from "../../assets/members/kevinYang.webp";
import AnuptaHeadshot from "../../assets/members/anupta.webp";
import NicholasHeadshot from "../../assets/members/nicholas.webp";
import ShreyasHeadshot from "../../assets/members/shreyas.webp";
import WinsiceHeadshot from "../../assets/members/winsice.webp";
import YubiHeadshot from "../../assets/members/yubi.webp";
type Member = {
name: string;
title: string;
position: string;
team: string;
website: string;
github: string;
headshot: ImageMetadata;
};
const currentMembers: Member[] = [
// Board and Senior Developers
{
name: "Joshua Lau '26",
title: "Senior Developer",
position: "Co-President",
team: "TigerJunction, Renkai, TigerRetail, TigerStudy",
website: "https://motoaki.dev",
github: "https://github.com/joshuamotoaki",
headshot: JoshuaHeadshot
},
{
name: "Leo Stepanewk '25",
title: "Senior Developer",
position: "Co-President",
team: "Today, Tay, TigerDraw",
website: "",
github: "https://github.com/leo-step",
headshot: LeoHeadshot
},
{
name: "Hang Pham '26",
title: "Senior Developer",
position: "Treasurer",
team: "",
website: "",
github: "https://github.com/thanhhang1306",
headshot: HangHeadshot
},
// Product
{
name: "Andy Zhang '26",
title: "Product Manager",
position: "",
team: "",
website: "",
github: "https://github.com/andy-h-zhang",
headshot: AndyHeadshot
},
{
name: "Winsice Ng '26",
title: "Product Manager and Junior Developer",
position: "",
team: "TigerRetail",
website: "",
github: "https://github.com/winsice-ng",
headshot: WinsiceHeadshot
},
{
name: "Anna Wang '26",
title: "Product Manager and Marketer",
position: "",
team: "",
website: "",
github: "",
headshot: AnnaHeadshot
},
// Designers
{
name: "Angelina Ji '27",
title: "Designer and Marketer",
position: "",
team: "TigerRetail, Today",
website: "",
github: "",
headshot: AngelinaHeadshot
},
// Junior Developers
{
name: "Julia Ying '26",
title: "Junior Developer and Designer",
position: "",
team: "TigerLift",
website: "",
github: "https://github.com/juliaying26",
headshot: JuliaHeadshot
},
{
name: "Erica Lee '26",
title: "Junior Developer and Designer",
position: "",
team: "TigerRetail",
website: "",
github: "https://github.com/ericayrlee",
headshot: EricaHeadshot
},
{
name: "Keith Matanachai '26",
title: "Junior Developer",
position: "",
team: "TigerJunction, Renkai",
website: "",
github: "https://github.com/matan53153",
headshot: KeithHeadshot
},
{
name: "Marvin Chen '26",
title: "Junior Developer",
position: "",
team: "TigerRetail",
website: "",
github: "https://github.com/marvin-chen",
headshot: MarvinHeadshot
},
{
name: "Myles Anderson '26",
title: "Junior Developer",
position: "",
team: "TigerJunction, Renkai",
website: "",
github: "https://github.com/myles332",
headshot: MylesHeadshot
},
{
name: "Oyu Enkhbold '26",
title: "Junior Developer",
position: "",
team: "Today",
website: "",
github: "https://github.com/oyu-e",
headshot: OyuHeadshot
},
{
name: "Kevin Yang '26",
title: "Junior Developer",
position: "",
team: "TigerSnatch",
website: "",
github: "https://github.com/ky6374",
headshot: KevinYangHeadshot
},
{
name: "Anupta Argo '26",
title: "Junior Developer",
position: "",
team: "TigerSnatch",
website: "",
github: "https://github.com/anuptaa",
headshot: AnuptaHeadshot
},
{
name: "Callum Boyagoda '26",
title: "Junior Developer",
position: "",
team: "TigerJunction",
website: "",
github: "https://github.com/BoyagodaC",
headshot: CallumHeadshot
},
{
name: "Nicholas Vickery '26",
title: "Junior Developer",
position: "",
team: "TigerRetail",
website: "",
github: "https://github.com/nickvick04",
headshot: NicholasHeadshot
},
{
name: "Ammaar Alam '27",
title: "Junior Developer",
position: "",
team: "Tay, TigerDraw, TigerJunction",
website: "https://ammaaralam.com",
github: "https://github.com/Ammaar-Alam",
headshot: AmmaarHeadshot
},
{
name: "Emily Zhou '27",
title: "Junior Developer",
position: "",
team: "TigerJunction",
website: "",
github: "https://github.com/z-emily",
headshot: EmilyHeadshot
},
{
name: "Glen Nfor '27",
title: "Junior Developer",
position: "",
team: "TigerRetail",
website: "https://glennfor.tech",
github: "https://github.com/glennfor",
headshot: GlenHeadshot
},
{
name: "Ryan Salik '27",
title: "Junior Developer",
position: "",
team: "TigerJunction",
website: "https://ryansalik.com",
github: "https://github.com/rsalik",
headshot: RyanHeadshot
},
{
name: "Ben Aepli '28",
title: "Junior Developer",
position: "",
team: "TigerRetail, Renkai",
website: "https://benaepli.com",
github: "https://github.com/benaepli",
headshot: BenHeadshot
},
{
name: "Grace Tan '28",
title: "Junior Developer",
position: "",
team: "Today, Renkai",
website: "",
github: "https://github.com/debuggernotfound",
headshot: GraceHeadshot
},
{
name: "Kevin Liu '28",
title: "Junior Developer",
position: "",
team: "PawPointClicker",
website: "https://kevinliu.biz",
github: "https://github.com/Kevin-Liu-01",
headshot: KevinHeadshot
},
{
name: "Shreyas Garimella '28",
title: "Junior Developer",
position: "",
team: "Today",
website: "",
github: "https://github.com/sgarimel",
headshot: ShreyasHeadshot
}
];
const pastMembers: string[] = [
"Shivam Kak '26",
"Mark Rubin '26",
"Aaliyah Sayed '25",
"Youngseo Lee '25",
"Adam Kelch '24",
"Daniel Park '24",
"Taylor Yamashita '24",
"Benjamin Chan '23",
"Adam Gamba '23",
"Shannon Heh '23",
"Nicholas Padmanabhan '23",
"Charles An '22",
"Ayo Oguntola '23",
"Emre Cakir '21",
"Reilly Bova '20",
"Rushy Panchal '19",
"Ben Parks '17",
"Maxim Zaslavsky '17"
];
const companies: [ImageMetadata, string][] = [
[DatabricksLogo, "Databricks"],
[NetflixLogo, "Netflix"],
[MetaLogo, "Meta"],
[StripeLogo, "Stripe"],
[PineconeLogo, "Pinecone"],
[AWSLogo, "Amazon Web Services"],
[AirbnbLogo, "Airbnb"],
[MicrosoftLogo, "Microsoft"]
];
---
<section id="about" class="py-16">
<div class="cont text-center space-y-8">
<div class="space-y-2">
<h3>ABOUT US</h3>
<p class="text-lg">Meet the TigerApps team!</p>
</div>
<div class="border-b-4 w-32 border-secondary rounded-full mx-auto">
</div>
<article>
<h4 class="mb-4">Current Members</h4>
<div
class="grid justify-center gap-4 md:gap-y-8 md:gap-6
grid-cols-2 sm:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5
constrained">
{currentMembers.map(member => <MemberCard {...member} />)}
</div>
</article>
<article>
<h4 class="mb-4">Past Members</h4>
<ul
class="grid sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4 gap-2 constrained">
{
pastMembers.map(member => (
<li class="text-sm sm:text-base">{member}</li>
))
}
</ul>
</article>
<article>
<h4 class="mb-4">Our members have gone on to work for...</h4>
<ul
class="grid grid-cols-2 md:grid-cols-4 gap-4 sm:gap-8 constrained">
{
companies.map(company => (
<li>
<Image
loading="lazy"
class="rounded-lg shadow-lg aspect-square object-cover"
src={company[0]}
alt={company[1]}
/>
</li>
))
}
</ul>
</article>
</div>
</section>