Skip to content

Commit

Permalink
Merge branch 'dev' into emily/smallupdates
Browse files Browse the repository at this point in the history
  • Loading branch information
xehu authored Dec 6, 2024
2 parents 2ffb9a0 + 35208a0 commit 082ae94
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
Binary file added website/public/pradnaya.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 16 additions & 13 deletions website/src/components/pages/Team.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ const current = [
name: 'Priya DCosta',
image: `${process.env.PUBLIC_URL}/priya.png`
},
{
name: 'Pradnaya Pathak',
image: `${process.env.PUBLIC_URL}/pradnaya.png`
},
{
name: 'Yashveer Singh Sohi',
image: `${process.env.PUBLIC_URL}/yashveer.png`
Expand Down Expand Up @@ -76,17 +80,14 @@ function Team() {
<div className="current">
{current.map((member, index) => {
let title = 'Undergraduate Student, UPenn';
if (member.name === 'Evan Rowbotham') {
title = 'Undergraduate Student, FSU';
}
else if (member.name === 'Gina Chen') {
title = 'Graduate Student, UPenn';
}
else if (member.name === 'Yuxuan Zhang') {
if (member.name === 'Yuxuan Zhang') {
title = 'Data Scientist';
}
else if (member.name === 'Priya DCosta') {
title = 'Graduate Student, UPenn';
title = 'Graduate Alumna, UPenn';
}
else if (member.name === 'Yashveer Singh Sohi') {
title = 'Graduate Alumnus, UPenn';
}

return (<div key={index} className='current-member'>
Expand All @@ -105,13 +106,15 @@ function Team() {
if (member.name === 'Yuluan Cao') {
title = 'Graduate Student, UPenn';
}
else if (member.name === 'Yashveer Singh Sohi') {
title = 'Data Scientist';
}
else if (member.name === 'Eric Zhong') {
title = 'Undergraduate Student, Cornell';
}

else if (member.name === 'Evan Rowbotham') {
title = 'Undergraduate Student, NYU';
}
else if (member.name === 'Gina Chen') {
title = 'Data Scientist';
}
return (<div key={index} className='alumni-member'>
<img src={member.image} alt={member.name} className="alumni-image" />
<h2>{member.name}</h2>
Expand All @@ -124,4 +127,4 @@ function Team() {
);
}

export default Team;
export default Team;

0 comments on commit 082ae94

Please sign in to comment.