Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 76 additions & 1 deletion app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ interface member {
imgSrc: string;
socials: {
linkedin: string;
github?: string;
};
}

Expand Down Expand Up @@ -53,6 +54,18 @@ const LinkedinIcon = () => (
</svg>
);

const GitHubIcon = () => (
<svg
xmlns='http://www.w3.org/2000/svg'
width='24'
height='24'
viewBox='0 0 16 16'
fill='currentColor'
>
<path d='M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8' />
</svg>
);

// Team data organized for easier management
const teamLeads: member[] = [
{
Expand All @@ -62,12 +75,52 @@ const teamLeads: member[] = [
imgSrc: 'https://i.imgur.com/zDqurNZ.jpeg',
socials: {
linkedin: 'https://www.linkedin.com/in/jennyfan04/',
github: 'https://github.com/jfmath04',
},
},
{
name: 'Zhao Song Zhou',
role: 'Team Lead',
year: '2025 - 2026',
imgSrc: 'https://i.imgur.com/JeUh9dc.jpeg',
socials: {
linkedin: 'https://www.linkedin.com/in/zhao-song-zhou/',
github: 'https://github.com/ZhaoSongZh7',
},
},
{
name: 'Alvin Sze',
role: 'Team Lead',
year: '2025 - 2026',
imgSrc: 'https://i.imgur.com/mZy9kzp.jpeg',
socials: {
linkedin: 'https://www.linkedin.com/in/alvinsze/',
github: 'https://github.com/asze17',
},
},
];
Comment on lines 70 to 101

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change the year to 2026-2027 for us and move Jenny to past leadership, since by the time this app is released, it's going to be the next AY.


const teamMembers: member[] = [
// Add your name, role, and image here!
{
name: 'Allison Lee',
role: 'Product Manager',
year: '',

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why don't team members have a year?

imgSrc: 'https://i.imgur.com/3SPqM7z.jpeg',
socials: {
linkedin: 'https://www.linkedin.com/in/allisonelee/',
github: 'https://github.com/allisonelee',
},
},
{
name: 'Christal Chen',
role: 'Software Engineer',
year: '',
imgSrc: 'https://i.imgur.com/ZshQ3Fj.jpeg',
socials: {
linkedin: 'https://www.linkedin.com/in/christalchen/',
github: 'https://github.com/12chenec',
},
},
];

const pastLeadership: member[] = [
Expand All @@ -78,6 +131,7 @@ const pastLeadership: member[] = [
imgSrc: 'https://i.imgur.com/kUbzXL9.png',
socials: {
linkedin: 'https://www.linkedin.com/in/spencer-doyle3/',
github: 'https://github.com/Spencer04Hire',
},
},
];
Expand Down Expand Up @@ -179,6 +233,13 @@ export function App() {
{lead.role}
</p>
<div className='flex justify-center sm:justify-start space-x-4'>
{lead.socials.github ? (
<SocialIcon
href={lead.socials.github}
>
<GitHubIcon />
</SocialIcon>
) : null}
<SocialIcon
href={lead.socials.linkedin}
>
Expand Down Expand Up @@ -221,6 +282,13 @@ export function App() {
{member.role}
</p>
<div className='flex mx-auto w-min mt-2 justify-center sm:justify-start space-x-4'>
{member.socials.github ? (
<SocialIcon
href={member.socials.github}
>
<GitHubIcon />
</SocialIcon>
) : null}
<SocialIcon href={member.socials.linkedin}>
<LinkedinIcon />
</SocialIcon>
Expand Down Expand Up @@ -276,6 +344,13 @@ export function App() {
{lead.year}
</p>
<div className='flex justify-center sm:justify-start space-x-4'>
{lead.socials.github ? (
<SocialIcon
href={lead.socials.github}
>
<GitHubIcon />
</SocialIcon>
) : null}
<SocialIcon
href={lead.socials.linkedin}
>
Expand Down
Loading