Skip to content

Commit

Permalink
Merge pull request #483 from MathSocUNSW/update-prev-team
Browse files Browse the repository at this point in the history
Update prev team
  • Loading branch information
ericnd authored Mar 17, 2024
2 parents 8398c17 + 4615dcb commit cf65169
Show file tree
Hide file tree
Showing 4 changed files with 118 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
}
}
Binary file modified public/images/hero/mathsoc_hero.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
117 changes: 117 additions & 0 deletions src/data/pastTeamMembersData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ export interface execPerson {
role:
| "President"
| "Vice President"
| "Vice President of Activities"
| "Vice President of Careers"
| "Vice President of Education"
| "Vice President of Operations"
| "Secretary"
| "Treasurer"
| "Arc Delegate"
Expand All @@ -12,12 +16,17 @@ export interface execPerson {

export interface directorRole {
role:
| "Academics"
| "Maths Outreach"
| "Education"
| "Corporate Events"
| "Socials"
| "Careers"
| "Social Events"
| "Human Resources"
| "IT"
| "Marketing"
| "Creative"
| "Sponsorships"
| "Events"
| "Women's"
Expand All @@ -29,12 +38,17 @@ export interface directorRole {

export interface subcommitteeData {
role:
| "Academics"
| "Maths Outreach"
| "Education"
| "Corporate Events"
| "Socials"
| "Careers"
| "Social Events"
| "Human Resources"
| "IT"
| "Marketing"
| "Creative"
| "Sponsorships"
| "Events"
| "General";
Expand All @@ -49,6 +63,109 @@ export interface yearTeamData {
}

const pastTeamData: yearTeamData[] = [
{
year: 2023,
execList: [
{ name: "Daniel Kim", role: "President" },
{ name: "Sharon Zhong", role: "Vice President of Activities" },
{ name: "Nancy Lu", role: "Vice President of Careers" },
{ name: "Bruce Chen", role: "Vice President of Education" },
{ name: "Han Zhang", role: "Vice President of Operations" },
{ name: "Aaren Sriskandarajah", role: "Secretary" },
{ name: "Catherine Lye", role: "Treasurer" }
],
directorList: [
{ role: "Academics", directors: ["Lachlan Tobin", "Anne Chen", "Tim Leask"] },
{ role: "Education", directors: ["Ronald Chiang", "Fred Yan"] },
{ role: "Socials", directors: ["Lok Yan Ng", "Scott Liu"] },
{ role: "Human Resources", directors: ["Julian Zheng", "Meghna Sunil"] },
{ role: "Careers", directors: ["Nik Singh", "Palaash Rawat", "Jack Ting"] },
{ role: "IT", directors: ["Eric Do", "Raiyan Ahmed"] },
{ role: "Creative", directors: ["Kelly Pan"] },
{ role: "Marketing", directors: ["Neal O'Brien", "Leon Kheang"] }
],
subcommittee: [
{
role: "Academics",
members: [
"Aaron Hu",
"Chrisitan Albina",
"Jason Zhou",
"Marcus Ambler",
"Jessica Xu",
"Michael Pogrebinsky",
"Otto Ohis",
"Shuang Wu (William)"
]
},
{
role: "Education",
members: [
"Gerald Huang",
"Isabella Bustos-McNeil",
"Jeremy Le",
"Matthew Bloomfield",
"Roger Yao",
"Skye Blair"
]
},
{
role: "Careers",
members: [
"Andrew Cheung",
"Catherine Song",
"Eddison Liang",
"Emmanuel Aroney",
"Hiu Yeung (Jimmy) Chan",
"Jospeph Li",
"Nicholas Lam",
"Nusaibah Hasin Bari"
]
},
{
role: "Human Resources",
members: ["Alice Lobo", "Borui Chen", "Caitlin Huang", "Ho Yeung Au", "Kaira Dumasia"]
},
{
role: "Socials",
members: [
"Edwin Tang",
"Hannah Wah Day",
"Phoebe Loh",
"William Zhang",
"Yash Barve",
"Yiren Guo"
]
},
{
role: "Creative",
members: [
"Alex Won-Seok Shim",
"Arushi Mittal",
"Cindy Zhang",
"Lillian Lin",
"Neil Nag",
"Rachel Bai",
"Wujin (Daniel) Kim"
]
},
{
role: "Marketing",
members: ["Daniel Cho", "Isaac Lee", "Josh Chen", "Lauren Selby", "Nikki Chen"]
},
{
role: "IT",
members: [
"Ashley Wong",
"Devam Jain",
"James Gunawam",
"Jeremy Tran",
"Martin Knezevic",
"Sarah Yan"
]
}
]
},
{
year: 2022,
execList: [
Expand Down
5 changes: 0 additions & 5 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@ const Home: React.FC<EventProps> = ({ events }) => {
</Typography>
</WholePageBox>
</div>
<Button
text={"First Year Guide"}
link={"https://www.unswmathsoc.org/files/resources/misc/mathsoc-firstyearguide.pdf"}
color={""}
/>
<UpcomingEvents events={events} />
<RecentEvents events={events} />
<SponsorsList />
Expand Down

0 comments on commit cf65169

Please sign in to comment.