Skip to content

Commit 0e342f7

Browse files
committed
added 2020 data
1 parent 498e02c commit 0e342f7

File tree

1 file changed

+106
-0
lines changed

1 file changed

+106
-0
lines changed

frontend/public/data/years/2020.ts

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
import { Exec, PortfolioData, PortfolioRole } from "../members";
2+
3+
export const teamData = {
4+
execs: [
5+
{
6+
name: "Shane Kadish",
7+
role: "Co-President",
8+
},
9+
{
10+
name: "Tammy Zhong",
11+
role: "Co-President",
12+
},
13+
{
14+
name: "Sam Push",
15+
role: "Secretary",
16+
},
17+
{
18+
name: "Teresa Feng",
19+
role: "Treasurer",
20+
},
21+
{
22+
name: "Jeremy Chiu",
23+
role: "Arc Delegate",
24+
},
25+
{
26+
name: "Tom Kunc",
27+
role: "Grievance Officer",
28+
},
29+
] as Exec[],
30+
31+
portfolios: [
32+
{
33+
name: "Careers",
34+
description: "Facilitates industry sponsor relations, as well as creating events focused on interpersonal development and networking.",
35+
members: [
36+
{ name: "Evangeline Endacott", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
37+
{ name: "Low Khye Ean", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
38+
{ name: "Nicholas Duller", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
39+
{ name: "Yan Zhai", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
40+
],
41+
},
42+
{
43+
name: "CompClub",
44+
description: "need to add a description",
45+
members: [
46+
{ name: "Livia Wijayanti", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
47+
{ name: "Timothy Ryan", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
48+
],
49+
},
50+
{
51+
name: "Creative",
52+
description: "Lays the groundwork for CSESoc's aesthetic branding, providing an outlet for creative expression.",
53+
members: [
54+
{ name: "Elizabeth Zhong", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
55+
{ name: "Jia Min Guo", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
56+
],
57+
},
58+
{
59+
name: "Marketing",
60+
description: "Promotes CSESoc on our social media as well as creating supplementary marketing material to engage our audience.",
61+
members: [
62+
{ name: "Isaac Pamu Joshi", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
63+
{ name: "Jessica Feng", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
64+
],
65+
},
66+
{
67+
name: "Media",
68+
description: "Focuses on creating content for our CSESoc community and beyond to capture our diverse student voice.",
69+
members: [
70+
{ name: "Aditi Chandra", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
71+
{ name: "Clarence Shijun Feng", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
72+
],
73+
},
74+
{
75+
name: "Socials",
76+
description: "Organises approachable events targeted towards building an inclusive and welcoming community, to help build long-lasting friendships!",
77+
members: [
78+
{ name: "Frances Lee", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
79+
{ name: "Van-Roy Trinh", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
80+
],
81+
},
82+
{
83+
name: "Software Projects",
84+
description: "add a description",
85+
members: [
86+
{ name: "Gordon Zhong", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
87+
{ name: "Leesa Kristina Dang", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
88+
],
89+
},
90+
{
91+
name: "Student Network",
92+
description: "hello",
93+
members: [
94+
{ name: "Sachin Krishnamoorthy", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
95+
{ name: "Shrey Somaiya", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
96+
],
97+
},
98+
{
99+
name: "Workshops",
100+
description: "hello",
101+
members: [
102+
{ name: "Michael Gribben", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
103+
],
104+
},
105+
] as PortfolioData[],
106+
};

0 commit comments

Comments
 (0)