Skip to content

Commit

Permalink
Merge pull request #359 from senior-knights/feature/add-2024-team-mem…
Browse files Browse the repository at this point in the history
…bers

add 2024 team members
  • Loading branch information
edomamaru authored Dec 17, 2024
2 parents 6883aad + fb402ca commit e42c115
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
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

0 comments on commit e42c115

Please sign in to comment.