-
Notifications
You must be signed in to change notification settings - Fork 0
/
members.tsx
97 lines (95 loc) · 1.97 KB
/
members.tsx
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
let members = [
{
// This object is a rebound for components/contact_info.tsx
// when empty args are provided.
name: "TBD",
position: "Open Position",
major: "N/A",
minor: null,
depth: null,
lines: ["TBD"],
pic: "/22-23/tbd.png",
email: "",
year: "",
},
{
name: "Yong Quan Neo",
position: "President",
major: "Electrical Engineering",
minor: null,
depth: "Computer System Design",
lines: [
"I used to play archery for my state",
],
pic: "/24-25/yongQuanNeo.jpg",
email: "[email protected]",
year: "Third Year",
},
{
name: "Praneeth Surapaneni",
position: "VP Internal",
major: "Computer Engineering",
minor: null,
depth: null,
lines: [
"I play badminton",
],
pic: "/24-25/praneethSurapaneni.jpg",
email: "[email protected]",
year: "Third Year",
},
{
name: "Iris Chou",
position: "Academic & Professional Chair",
major: "Computer Engineering",
minor: null,
depth: null,
lines: [
"I'm not a fan of cilantro",
],
pic: "/24-25/irisChou.jpg",
email: "[email protected]",
year: "Second Year",
},
{
name: "Alexandra Dinh",
position: "Social & WECE Chair",
major: "Electrical Engineering",
minor: null,
depth: null,
lines: [
"I do kpop dance covers",
],
pic: "/24-25/alexandraDinh.jpg",
email: "[email protected]",
year: "Second Year",
},
{
name: "Jaden Seangmany",
position: "Webmaster",
major: "Computer Engineering",
minor: "Cognitive Science, Math",
depth: "Machine Learning and Data Science",
lines: [
"I've traveled to 17 countries and 4 continents"
],
pic: "/24-25/jadenSeangmany.jpg",
email: "[email protected]",
year: "Second Year",
},
{
name: "Steven Chen",
position: "Mentorship Chair",
major: "Electrical Engineering",
minor: null,
depth: null, //must ask
lines: [
"I’ve dislocated both my thumbs and both my knees before."
,
],
pic: "/24-25/stevenChen.jpg",
email: "[email protected]",
year: "Third Year",
},
];
export default members;