From cbe094dc05acbb0cc556ed977a8b37eaa00e7d9b Mon Sep 17 00:00:00 2001 From: jsun969 Date: Fri, 15 Mar 2024 00:46:01 +1030 Subject: [PATCH] chore(about): update committee members --- src/data/committee-members.ts | 70 +++++++++++++++++++---------------- 1 file changed, 38 insertions(+), 32 deletions(-) diff --git a/src/data/committee-members.ts b/src/data/committee-members.ts index b4a1ef10..2c7b185f 100644 --- a/src/data/committee-members.ts +++ b/src/data/committee-members.ts @@ -6,120 +6,126 @@ type CommitteeMember = { // List of committee members with name, role and whether they are part of the // executive committee -export const COMMITTEE_MEMBERS = [ +export const COMMITTEE_MEMBERS: CommitteeMember[] = [ { name: 'David Maslov', position: 'President', - isExecCommittee: true, + exec: true, }, { name: 'Cubie', position: 'Vice-President', - isExecCommittee: true, + exec: true, }, { name: 'Christian', position: 'Treasurer', - isExecCommittee: true, + exec: true, }, { name: 'Ray Okamoto', position: 'Secretary', - isExecCommittee: true, + exec: true, }, { name: 'Milan', position: 'Partnerships & Sponsorships Manager', - isExecCommittee: true, + exec: true, }, { name: 'F. Umar', position: 'Partnerships & Sponsorships Officer', - isExecCommittee: false, }, { name: 'Pouya', position: 'Partnerships & Sponsorships Officer', - isExecCommittee: false, }, { name: 'Bowen Sun', position: 'Business Manager', - isExecCommittee: false, }, { name: 'Willard Gorman', position: 'Duck Lounge Liaison', - isExecCommittee: false, }, { name: 'Mischa Sarac', position: 'Equity Officer', - isExecCommittee: false, }, { name: 'S. Bhatta', position: 'Artificial Intelligence Representative', - isExecCommittee: false, }, { name: 'Will Johnston', position: 'Cybersecurity Representative', - isExecCommittee: false, }, { name: 'Khanh', position: 'Data Science Representative', - isExecCommittee: false, }, { name: 'Jonty Leslie', position: 'Distributed Systems & Networking Representative', - isExecCommittee: false, }, { - name: 'Joshua Goldsworthy Callaway', - position: 'Information Technology Representative', - isExecCommittee: false, + name: 'Maged Gayed', + position: 'First Year Representative', }, { - name: 'Dino Macri', - position: 'Software Engineering Representative', - isExecCommittee: false, + name: 'Yuhan Wang', + position: 'Graphic Designer', }, { - name: 'Yuhan Wang', + name: 'M. Klaric', position: 'Graphic Designer', - isExecCommittee: false, }, { name: 'Darcy', position: 'Social Media Officer', - isExecCommittee: false, }, { - name: 'M. Klaric', + name: 'Yaman Ashqar', + position: 'Social Media Officer', + }, + { + name: 'Omar Badr', position: 'Social Media Officer', - isExecCommittee: false, }, { name: 'Phoenix Pereira', position: 'Open Source Officer', - isExecCommittee: false, }, { - name: 'Rishi Adhikari', + name: 'Yeyang (Justin) Sun', position: 'Open Source Officer', - isExecCommittee: false, + }, + { + name: 'Joshua Goldsworthy Callaway', + position: 'General Committee', + }, + { + name: 'Dino Macri', + position: 'General Committee', }, { name: 'Cuinn Kemp', position: 'General Committee', - isExecCommittee: false, }, { name: 'Timothy Choi', position: 'General Committee', - isExecCommittee: false, }, -] as const satisfies CommitteeMember[]; + { + name: 'Leo Li', + position: 'General Committee', + }, + { + name: 'Zachary Anderson', + position: 'General Committee', + }, + { + name: 'Mansi Patel', + position: 'General Committee', + }, +];