-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlistOfMembers.js
More file actions
92 lines (91 loc) · 4.56 KB
/
listOfMembers.js
File metadata and controls
92 lines (91 loc) · 4.56 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
import siddharth from "../../assets/images/members/siddharth.jpg";
import anubhav from "../../assets/images/members/anubhav.jpg";
import tasnia from "../../assets/images/members/tasnia.jpg";
import welvin from "../../assets/images/members/welvin.jpg";
import alima from "../../assets/images/members/alima.jpg";
import aarushi from "../../assets/images/members/aarushi.jpg";
import reynard from "../../assets/images/members/reynard.jpg";
import anuj from "../../assets/images/members/anuj.jpg";
import pranay from "../../assets/images/members/pranay.jpg";
export const listOfMembers = [
{
name: "Siddharth Agarwal",
picture: siddharth,
role: "President",
linkedin: "https://www.linkedin.com/in/siddharthagarwal2608/",
github: "https://www.github.com/zweistein1326",
description:
"Siddharth enjoys building new things that can bring about a change in the world. He is passionate about space and loves exploring new technologies. He believes in making the world a better and simpler place, one step at a time. Siddharth is currently a penultimate year student studying Computer Science and Astronomy at the University of Hong Kong.",
},
{
name: "Anubhav Garg",
picture: anubhav,
role: "Vice President",
linkedin: "https://www.linkedin.com/in/anubhav-garg-9658a9a1/",
github: "https://github.com/anubhavgarg123",
description:
"Anubhav is a Computer Science student at the University of Hong Kong. An ever smiling, super organised leader who is the first to arrive in every meeting! Determined, hard working team player passionate about doing the difficult things in an easy way.",
},
{
name: "Tasnia Ishrar",
picture: tasnia,
role: "Head of External Relations",
linkedin: "http://linkedin.com/in/tasnia-ishrar-r-013219173",
github: "https://github.com/tasniaishrar",
description:
"Tasnia is pursuing Bachelor of Engineering at The University of Hong Kong. She is an avid learner, and her hobbies include painting and coding.",
},
{
name: "Welvin Bun",
picture: welvin,
role: "Head of Technology",
linkedin: "https://www.linkedin.com/in/welvin-bun/",
github: "https://github.com/welvin21",
description:
"A passionate programmer who enjoys taking complex problems and turning them into simple and efficient solutions using code. Welvin is currently a Computer Science student at the University of Hong Kong.",
},
{
name: "Alima Medetova",
picture: alima,
role: "Head of Event Management",
linkedin: "http://linkedin.com/in/alima-medetova-27b589175",
description:
"Passionate, organised and detail-oriented. The key traits of our Events Manager, Alima. Loves to take challenges and does her best in commitments - something that makes her good at exploring new opportunities and getting things done. She is currently pursuing Bachelors of Engineering at the University of Hong Kong",
},
{
name: "Aarushi Goyal",
picture: aarushi,
role: "Head of Corporate Relations",
linkedin: "http://linkedin.com/in/aarushi-goyal-6b5226190",
github: "https://github.com/aarushi26-sys",
description:
"An inquisitive problem solver, Aarushi is a social aficionado whose love for Technology is complemented by her dynamic problem solving abilities. She is currently a sophomore studying Engineering at the University of Hong Kong.",
},
{
name: "Reynard Verill",
picture: reynard,
role: "Head of Marketing",
linkedin: "https://www.linkedin.com/in/reynard-verill-234685196/",
github: "https://www.github.com/reyvb24",
description:
"Reynard is majoring in Engineering and enjoys solving problems and working in a team. He is passionate about programming and financial markets.",
},
{
name: "Anuj Bhatia",
picture: anuj,
role: "Head of Finance",
linkedin: "https://www.linkedin.com/in/anujbhatia2600/",
github: "https://www.github.com/anujbhatia2600",
description:
"Anuj is a Computer Science major at the University of Hong Kong. Computer Problem? No Problem! Finance minor helps me out those numbers, hit me up if need any help with them!",
},
{
name: "Pranay Agarwal",
picture: pranay,
role: "Head of Event Management",
linkedin: "https://www.linkedin.com/in/pranay-agarwal-5b0652193/",
github: "https://www.github.com/pranay1208",
description:
"Pranay is a software developer with a passion for making video games. He loves combining creativity with coding to build out-of-the-box solutions and user-facing products. He is majoring in Computer Science at The University of Hong Kong",
},
];