Skip to content

Commit 30bfb15

Browse files
committed
2 space indent
1 parent db5e675 commit 30bfb15

File tree

4 files changed

+272
-272
lines changed

4 files changed

+272
-272
lines changed

frontend/public/data/members.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
export type Exec = {
2-
name: string,
3-
role: string,
2+
name: string,
3+
role: string,
44
};
55

66
export type PortfolioData = {
7-
name: string,
8-
description: string,
9-
members: PortfolioMember[],
7+
name: string,
8+
description: string,
9+
members: PortfolioMember[],
1010
};
1111

1212
export type PortfolioMember = {
13-
name: string,
14-
role: PortfolioRole,
15-
imageUrl: string;
13+
name: string,
14+
role: PortfolioRole,
15+
imageUrl: string;
1616
}
1717

1818
export enum PortfolioRole {
19-
DIRECTOR = "Director",
20-
SUBCOM = "Subcommittee",
21-
}
19+
DIRECTOR = "Director",
20+
SUBCOM = "Subcommittee",
21+
}

frontend/public/data/years/2020.ts

Lines changed: 96 additions & 96 deletions
Original file line numberDiff line numberDiff line change
@@ -2,105 +2,105 @@ import { Exec, PortfolioData, PortfolioRole } from "../members";
22

33
export const teamData = {
44
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-
},
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+
},
2929
] as Exec[],
3030

3131
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" },
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" },
3939
{ 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-
},
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+
},
105105
] as PortfolioData[],
106106
};

0 commit comments

Comments
 (0)