Skip to content

Commit

Permalink
524 - initail changes, added Alumni tab, reusable components (#536)
Browse files Browse the repository at this point in the history
* 524 - initail changes, added Alumni tab, reusable components

* 524-Adding back Slider to UI, addressing comments. Signed-off-by: Sukriti, Website Developer

* Addressing comments - creating helper functions, fixing styles

Signed-off-by: Sukritib13 <113867416+Sukritib13@users.noreply.github.com>

* addressing comments - using var for bg color, using type for readability

Signed-off-by: Sukritib13 <113867416+Sukritib13@users.noreply.github.com>

* using types and correcting case

Signed-off-by: Sukritib13 <113867416+Sukritib13@users.noreply.github.com>

* using memoization

Signed-off-by: Sukritib13 <113867416+Sukritib13@users.noreply.github.com>

---------

Signed-off-by: Sukritib13 <113867416+Sukritib13@users.noreply.github.com>
Co-authored-by: brian nguyen <brian.nguy1en@gmail.com>
  • Loading branch information
2 people authored and IsaiahA21 committed Nov 14, 2024
1 parent 453e507 commit 9c2637d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/components/TeamSection/TeamInformation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ export const projectManagers: TeamMember[] = teamData.projectManagers.map((pm, i
image: importImage(pm.imagePath)
}));

export const alumniTeam: TeamMember[] = teamData.alumniTeam.map((alum, index) => ({
id: index,
...alum,
image: importImage(alum.imagePath)
}));

export const boardMembers: TeamMember[] = teamData.boardMembers.map((bm, index) => ({
id: index,
...bm,
Expand Down
2 changes: 1 addition & 1 deletion src/components/TeamSection/teamMembers.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,4 @@
"linkedin": "https://www.linkedin.com/in/rajpreet-gill/"
}
]
}
}

0 comments on commit 9c2637d

Please sign in to comment.