Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add 2024 team members #359

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Grid } from "@material-ui/core";
import { NewTabLink, Page } from "components/reuseables";
import React from "react";
import { team2020, team2021, team2022, team2023, teamAdvisors, TeamMember } from "utilities";
import { team2020, team2021, team2022, team2023, team2024, teamAdvisors, TeamMember } from "utilities";
import { TeamMemberProfile, TextSection } from ".";
import "./AboutPage.scss";

Expand All @@ -11,6 +11,7 @@ export const AboutPage = () => {
return (
<Page>
<AboutVision />
<AboutTeam2024 />
<AboutTeam2023 />
<AboutTeam2022 />
<AboutTeam2021 />
Expand Down Expand Up @@ -136,6 +137,21 @@ const AboutTeam2023 = () => {
);
};

const AboutTeam2024 = () => {
return (
<TextSection
body={
<Grid container direction="column" justify="flex-start" spacing={2}>
{team2024.map((member: TeamMember) => {
return <TeamMemberProfile key={member.name} member={member} />;
})}
</Grid>
}
title="Team of 2024"
/>
);
};

const AboutTeamAdvisors = () => {
return (
<TextSection
Expand Down
21 changes: 21 additions & 0 deletions client-course-schedulizer/src/utilities/helpers/teamMembers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,27 @@ export const team2023: TeamMember[] = [
},
];

export const team2024: TeamMember[] = [
{
bio: "Computer Science Student at Calvin University.",
name: "Noelle Haviland",
photo: "https://avatars.githubusercontent.com/u/112643038?v=4",
website: "https://github.com/neh8",
},
{
bio: "Computer Science Student at Calvin University.",
name: "Yuese Li",
photo: "https://avatars.githubusercontent.com/u/144585524?v=4",
website: "https://github.com/wahrheit319",
},
{
bio: "Computer Science Student at Calvin University.",
name: "Edom Maru",
photo: "https://avatars.githubusercontent.com/u/88850851?v=4",
website: "https://github.com/edomamaru",
},
];

export const teamAdvisors: TeamMember[] = [
{
bio:
Expand Down
Loading