Skip to content

Commit

Permalink
chore(about): update committee members
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 committed Mar 14, 2024
1 parent a3d3526 commit cbe094d
Showing 1 changed file with 38 additions and 32 deletions.
70 changes: 38 additions & 32 deletions src/data/committee-members.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
];

0 comments on commit cbe094d

Please sign in to comment.