Skip to content

Commit a8ef97b

Browse files
committed
Added 2026 Committee
modified: constants/team/team2025.ts new file: constants/team/team2026.ts Pushed updates for 2026 committee modified: constants/team/index.ts modified: constants/team/team2025.ts new file: constants/team/team2026.ts new file: public/team/aarav-2026-1.png new file: public/team/anya-2026-1.png new file: public/team/aryan-2026-1.png new file: public/team/hugo-2026-1.png new file: public/team/iretemi-2026-1.png new file: public/team/kaiwen-2026-1.png new file: public/team/luc-2026-1.png modified: constants/team/team2026.ts constants/team/pui-2026-1.png new file: constants/team/pui-2026-1.png modified: constants/team/index.ts new file: constants/team/pui-2026-1.png modified: constants/team/team2025.ts new file: constants/team/team2026.ts new file: public/team/aarav-2026-1.png new file: public/team/anya-2026-1.png new file: public/team/aryan-2026-1.png new file: public/team/hugo-2026-1.png new file: public/team/iretemi-2026-1.png new file: public/team/kaiwen-2026-1.png new file: public/team/luc-2026-1.png renamed: constants/team/pui-2026-1.png -> public/team/pui-2026-1.png Changes to be committed: modified: constants/team/index.ts modified: constants/team/team2025.ts new file: constants/team/team2026.ts new file: public/team/aarav-2026-1.png new file: public/team/anya-2026-1.png new file: public/team/aryan-2026-1.png new file: public/team/hugo-2026-1.png new file: public/team/iretemi-2026-1.png new file: public/team/kaiwen-2026-1.png new file: public/team/luc-2026-1.png new file: public/team/pui-2026-1.png Updated 2026 Team Information Fixed a missing string terminator Added 2026 Committee modified: constants/team/team2025.ts new file: constants/team/team2026.ts Pushed updates for 2026 committee modified: constants/team/index.ts modified: constants/team/team2025.ts new file: constants/team/team2026.ts new file: public/team/aarav-2026-1.png new file: public/team/anya-2026-1.png new file: public/team/aryan-2026-1.png new file: public/team/hugo-2026-1.png new file: public/team/iretemi-2026-1.png new file: public/team/kaiwen-2026-1.png new file: public/team/luc-2026-1.png modified: constants/team/team2026.ts constants/team/pui-2026-1.png new file: constants/team/pui-2026-1.png modified: constants/team/index.ts new file: constants/team/pui-2026-1.png modified: constants/team/team2025.ts new file: constants/team/team2026.ts new file: public/team/aarav-2026-1.png new file: public/team/anya-2026-1.png new file: public/team/aryan-2026-1.png new file: public/team/hugo-2026-1.png new file: public/team/iretemi-2026-1.png new file: public/team/kaiwen-2026-1.png new file: public/team/luc-2026-1.png renamed: constants/team/pui-2026-1.png -> public/team/pui-2026-1.png Changes to be committed: modified: constants/team/index.ts modified: constants/team/team2025.ts new file: constants/team/team2026.ts new file: public/team/aarav-2026-1.png new file: public/team/anya-2026-1.png new file: public/team/aryan-2026-1.png new file: public/team/hugo-2026-1.png new file: public/team/iretemi-2026-1.png new file: public/team/kaiwen-2026-1.png new file: public/team/luc-2026-1.png new file: public/team/pui-2026-1.png Updated 2026 Team Information Fixed another issue fixed ANOTHER issue (sorry i'm sick and a little disorientated)
1 parent 116cb17 commit a8ef97b

11 files changed

Lines changed: 229 additions & 2 deletions

File tree

constants/team/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { team2026 } from './team2026'
12
import { team2025 } from './team2025'
23
import { team2024 } from './team2024'
34
import { team2023 } from './team2023'
@@ -19,6 +20,7 @@ import { team2008 } from './team2008'
1920
import { Committee } from '@/lib/committee'
2021

2122
export const COMMITTEES_BY_YEAR: Record<string, Committee[]> = {
23+
2026: team2026,
2224
2025: team2025,
2325
2024: team2024,
2426
2023: team2023,

constants/team/team2025.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export const team2025: Committee[] = [
199199
],
200200
},
201201
{
202-
name: "Pa'uk",
202+
name: "Pa\'uk",
203203
surname: '',
204204
role: Role.OLD_PERSON_REP,
205205
links: [],
@@ -229,7 +229,7 @@ export const team2025: Committee[] = [
229229
],
230230
},
231231
{
232-
name: 'Kaiwen (Kevin)',
232+
name: 'Kaiwen',
233233
surname: 'Wang',
234234
role: Role.FIRST_YEAR_REP,
235235
image: 'Kevin-1.webp',

constants/team/team2026.ts

Lines changed: 225 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
import { Committee, LinkType, Role } from "@/lib/committee"
2+
3+
export const team2026: Committee[] = [
4+
{
5+
name: "Kaiwen",
6+
surname: "Wang",
7+
role: Role.PRESIDENT,
8+
image: "kaiwen-2026-1.png",
9+
sponsorContact: true,
10+
sponsorEmail: "president@comp-soc.com",
11+
links: [
12+
{
13+
type: LinkType.LINKEDIN,
14+
url: "https://www.linkedin.com/in/wangkaiwen/",
15+
}, {
16+
type: LinkType.GITHUB,
17+
url: "https://github.com/Kaiwen-W"
18+
}, {
19+
type: LinkType.WEBSITE,
20+
url: "https://kaiwen.wang/"
21+
}
22+
],
23+
},
24+
{
25+
name: "Luc",
26+
surname: "Wallace",
27+
role: Role.VICE_PRESIDENT,
28+
sponsorContact: true,
29+
image: "luc-2026-1.png",
30+
links: [
31+
{
32+
type: LinkType.LINKEDIN,
33+
url: "https://www.linkedin.com/in/lucwallace/",
34+
}, {
35+
type: LinkType.GITHUB,
36+
url: "https://www.github.com/lucwl",
37+
}, {
38+
type: LinkType.WEBSITE,
39+
url: "https://lucwallace.com/"
40+
}
41+
],
42+
},
43+
{
44+
name: "Dhyey",
45+
surname: "Mehta",
46+
role: Role.TREASURER,
47+
image: "Dhyey-1.webp",
48+
links: [
49+
{
50+
type: LinkType.LINKEDIN,
51+
url: "https://www.linkedin.com/in/dhyeym/",
52+
}, {
53+
type: LinkType.GITHUB,
54+
url: "https://github.com/dhyeyym"
55+
}
56+
],
57+
},
58+
{
59+
name: "Aarav",
60+
surname: "Parin",
61+
role: Role.SECRETARY,
62+
image: "aarav-2026-1.png",
63+
links: [
64+
{
65+
type: LinkType.LINKEDIN,
66+
url: "https://www.linkedin.com/in/aarav-parin-958375385/",
67+
}
68+
],
69+
},
70+
{
71+
name: "Skye",
72+
surname: "K. V.",
73+
role: Role.TECHNICAL_SECRETARY,
74+
//image: "",
75+
sponsorContact: false,
76+
sponsorEmail: "techsec@comp-soc.com",
77+
links: [
78+
{
79+
type: LinkType.WEBSITE,
80+
url: "https://kaplyn.xyz/"
81+
}
82+
],
83+
},
84+
{
85+
name: "Hugo",
86+
surname: "Verity-Povoas",
87+
role: Role.SOCIAL_SECRETARY,
88+
image: "hugo-2026-1.png",
89+
links: [
90+
{
91+
type: LinkType.LINKEDIN,
92+
url: "https://www.linkedin.com/in/hugo-verity-povoas-9b09213b4/",
93+
}
94+
],
95+
},
96+
{
97+
name: "Pui",
98+
surname: "Hong Freeman Chung",
99+
role: Role.SOCIAL_MEDIA_OFFICER,
100+
image: "pui-2026-1.png",
101+
links: [
102+
{
103+
type: LinkType.LINKEDIN,
104+
url: "https://www.linkedin.com/in/freemanchung/",
105+
}
106+
],
107+
},
108+
{
109+
name: "Iretemi",
110+
surname: "Ogunlaja",
111+
role: Role.GRAPHIC_DESIGNER,
112+
image: "iretemi-2026-1.png",
113+
links: [
114+
{
115+
type: LinkType.LINKEDIN,
116+
url: "https://www.linkedin.com/in/iretemi-ogunlaja-458164343/",
117+
}
118+
],
119+
},
120+
{
121+
name: "Aryan",
122+
surname: "Ajmera",
123+
role: Role.SECOND_YEAR_REP,
124+
image: "aryan-2026-1.png",
125+
links: [
126+
{
127+
type: LinkType.LINKEDIN,
128+
url: "https://www.linkedin.com/in/aryan-ajmera7/",
129+
}
130+
],
131+
},
132+
{
133+
name: "Abdulwahid",
134+
surname: "Yaich",
135+
role: Role.THIRD_YEAR_REP,
136+
//image: "",
137+
links: [
138+
{
139+
type: LinkType.LINKEDIN,
140+
url: "https://www.linkedin.com/in/abdulwahidy/",
141+
},
142+
],
143+
},
144+
{
145+
name: "Anya",
146+
surname: "Krisanova",
147+
role: Role.FOURTH_YEAR_REP,
148+
image: "anya-2026-1.png",
149+
links: [
150+
{
151+
type: LinkType.LINKEDIN,
152+
url: "https://www.linkedin.com/in/anya-k-a8856927b/"
153+
}
154+
],
155+
},
156+
{
157+
name: "Pa\'uk",
158+
surname: "",
159+
role: Role.OLD_PERSON_REP,
160+
links: [],
161+
},
162+
{
163+
name: "Emily",
164+
surname: "M",
165+
role: Role.EDI_REP,
166+
image: "emily-1.jpg",
167+
links: [
168+
{
169+
type: LinkType.LINKEDIN,
170+
url: "https://www.linkedin.com/in/emilymillerxyz/",
171+
},
172+
{
173+
type: LinkType.WEBSITE,
174+
url: "https://emilymiller.xyz",
175+
},
176+
{
177+
type: LinkType.GITHUB,
178+
url: "https://github.com/python151",
179+
},
180+
],
181+
},
182+
//{
183+
// name: "Dhyey",
184+
// surname: "Mehta",
185+
// role: Role.JUNIOR_TREASURER,
186+
// image: "Dhyey-1.webp",
187+
// links: [
188+
// {
189+
// type: LinkType.LINKEDIN,
190+
// url: "https://www.linkedin.com/in/dhyeym/",
191+
// },
192+
// ],
193+
//},
194+
//{
195+
// name: "Kaiwen (Kevin)",
196+
// surname: "Wang",
197+
// role: Role.FIRST_YEAR_REP,
198+
// image: "Kevin-1.webp",
199+
// links: [
200+
// {
201+
// type: LinkType.LINKEDIN,
202+
// url: "https://www.linkedin.com/in/wangkaiwen",
203+
// },
204+
// {
205+
// type: LinkType.INSTAGRAM,
206+
// url: "https://www.instagram.com/kaiwen.wang_",
207+
// },
208+
// ],
209+
//},
210+
{
211+
name: "Farhaan",
212+
surname: "Mukarram",
213+
role: Role.MASTERS_REP,
214+
links: [
215+
{
216+
type: LinkType.LINKEDIN,
217+
url: "https://www.linkedin.com/in/farhaan-mukarram",
218+
},
219+
{
220+
type: LinkType.GITHUB,
221+
url: "https://github.com/farhaan-mukarram",
222+
},
223+
],
224+
}
225+
]

public/team/aarav-2026-1.png

4.24 MB
Loading

public/team/anya-2026-1.png

9.91 MB
Loading

public/team/aryan-2026-1.png

740 KB
Loading

public/team/hugo-2026-1.png

1.91 MB
Loading

public/team/iretemi-2026-1.png

1.39 MB
Loading

public/team/kaiwen-2026-1.png

2.02 MB
Loading

public/team/luc-2026-1.png

288 KB
Loading

0 commit comments

Comments
 (0)