added darin email

This commit is contained in:
JilianaTiu 2023-02-09 19:14:40 -08:00
parent 7e89ad19b8
commit 522ff3251a
2 changed files with 30 additions and 25 deletions

View file

@ -84,139 +84,139 @@ export const OFFICERS = [
name: "Darin Tsui",
position: "Chair",
photo: "/assets/img/officers/darin.jpg",
email: "email@ucsd.edu",
email: "dtsui@ieee.org",
},
{
name: "Brigette Hacia",
position: "Vice Chair Internal",
photo: "/assets/img/officers/brigette.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Tasnia Jamal",
position: "Vice Chair Events",
photo: "/assets/img/officers/tasnia.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Kevin Chang",
position: "Vice Chair Projects",
photo: "/assets/img/officers/kevin.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Arjun Sampath",
position: "Vice Chair Finance",
photo: "/assets/img/officers/arjun.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Niklas Chang",
position: "Events Coordinator",
photo: "/assets/img/officers/niklas.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Tien Vu",
position: "Vice Chair External",
photo: "/assets/img/officers/tien.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Derek Nguyen",
position: "Project Space Chair",
photo: "/assets/img/officers/derek.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Rafaella Gomes",
position: "Robocup Chair",
photo: "/assets/img/officers/rafaella.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Yash Puneet",
position: "Robocup Chair",
photo: "/assets/img/officers/yash.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Matthew Mikhailov",
position: "Supercomputing Chair",
photo: "/assets/img/officers/matthew.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Josh Lapidario",
position: "Quarterly Projects Chair",
photo: "/assets/img/officers/josh.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Sanh Nguyen",
position: "Quarterly Projects Chair",
photo: "/assets/img/officers/sanh.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Vuong Bui",
position: "Professional Chair",
photo: "/assets/img/officers/vuong.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Jason Liang",
position: "Professional Chair",
photo: "/assets/img/officers/jason.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Mohak Vaswani",
position: "Technical Chair",
photo: "/assets/img/officers/mohak.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Yusuf Morsi",
position: "Technical Chair",
photo: "/assets/img/officers/yusuf.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Shaun Garcia",
position: "Technical Chair",
photo: "/assets/img/officers/shaun.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Dennis Liang",
position: "Outreach Chair",
photo: "/assets/img/officers/dennis.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Daniel Chen",
position: "Outreach Chair",
photo: "/assets/img/officers/daniel.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Parisa Shahabi",
position: "Social Chair",
photo: "/assets/img/officers/parisa.webp",
email: "email@ucsd.edu",
email: "",
},
{
name: "Matthew Yik",
position: "Social Chair",
photo: "/assets/img/officers/matthewyik.webp",
email: "email@ucsd.edu",
email: "",
},
{
name: "Jiliana Tiu",
position: "Webmaster",
photo: "/assets/img/officers/jiliana.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Raymond Wang",
@ -228,12 +228,12 @@ export const OFFICERS = [
name: "Sankalp Kaushik",
position: "PR Chair - Media",
photo: "/assets/img/officers/sankalp.jpg",
email: "email@ucsd.edu",
email: "",
},
{
name: "Stephanie Xu",
position: "PR Chair - Graphics",
photo: "/assets/img/officers/stephanie.jpg",
email: "email@ucsd.edu",
email: "",
},
];

View file

@ -20,6 +20,11 @@ export default class CarouselItem extends Component<CarouselItemProps> {
<img src={this.props.photo}></img>
<div className="carousel-name">{this.props.name}</div>
<div className="carousel-pos">{this.props.position}</div>
<div className="carousel-email">
<a href={"mailto:" + this.props.email}>
{this.props.email}
</a>
</div>
</div>
);
}