
- added prettier config - added missing officers - reordered officers based on official roster - removed unused assets - added project description - fixed mismatching licenses - optimized images to webp - reduced project size by 95%
237 lines
5.9 KiB
TypeScript
237 lines
5.9 KiB
TypeScript
// The links that are on the top nav bar that link to a lowercase version of their page
|
|
export const ACTIVE_PAGES = [
|
|
{
|
|
name: "Home",
|
|
url: "/",
|
|
},
|
|
{
|
|
name: "Events",
|
|
url: "/events",
|
|
},
|
|
{
|
|
name: "Projects",
|
|
url: "/projects",
|
|
},
|
|
{
|
|
name: "Committees",
|
|
url: "/committees",
|
|
},
|
|
{
|
|
name: "Contact Us",
|
|
url: "/contact",
|
|
},
|
|
];
|
|
|
|
// Urls of team photos that will go in the "About" slideshow
|
|
export const TEAM_PHOTOS: string[] = [];
|
|
export const PROJECT_SPACE: string[] = [];
|
|
export const EVENTS: any[] = [];
|
|
|
|
export const SOCIALS = [
|
|
{
|
|
icon: "img/disc.svg",
|
|
url: "https://discord.gg/XxfjqZSjca",
|
|
message: "Join our server",
|
|
},
|
|
{
|
|
icon: "img/fab.svg",
|
|
url: "https://www.facebook.com/ieeeucsd",
|
|
message: "ieeeucsd",
|
|
},
|
|
{
|
|
icon: "img/inst.svg",
|
|
url: "https://www.instagram.com/ieee.ucsd",
|
|
message: "@ieeeucsd",
|
|
},
|
|
];
|
|
export const EMAIL = [
|
|
{
|
|
icon: "img/email.svg",
|
|
url: "mailto:ieee@eng.ucsd.edu",
|
|
message: "ieee@eng.ucsd.edu",
|
|
},
|
|
];
|
|
export const EMAIL_WHITE = [
|
|
{
|
|
icon: "img/email_white.svg",
|
|
url: "mailto:ieee@eng.ucsd.edu",
|
|
message: "ieee@eng.ucsd.edu",
|
|
},
|
|
];
|
|
|
|
export const SOCIALS_WHITE = [
|
|
{
|
|
icon: "img/disc_white.svg",
|
|
url: "https://discord.gg/XxfjqZSjca",
|
|
message: "Join our server",
|
|
},
|
|
{
|
|
icon: "img/fab_white.svg",
|
|
url: "https://www.facebook.com/ieeeucsd",
|
|
message: "ieeeucsd",
|
|
},
|
|
{
|
|
icon: "img/inst_white.svg",
|
|
url: "https://www.instagram.com/ieee.ucsd",
|
|
message: "@ieeeucsd",
|
|
},
|
|
];
|
|
|
|
export const OFFICERS = [
|
|
{
|
|
name: "Darin Tsui",
|
|
position: "Chair",
|
|
photo: "img/officers/darin.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Brigette Hacia",
|
|
position: "Vice Chair Internal",
|
|
photo: "img/officers/brigette.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Tasnia Jamal",
|
|
position: "Vice Chair Events",
|
|
photo: "img/officers/tasnia.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Kevin Chang",
|
|
position: "Vice Chair Projects",
|
|
photo: "img/officers/kevin.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Arjun Sampath",
|
|
position: "Vice Chair Finance",
|
|
photo: "img/officers/arjun.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Niklas Chang",
|
|
position: "Events Coordinator",
|
|
photo: "img/officers/niklas.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Tien Vu",
|
|
position: "Vice Chair External",
|
|
photo: "img/officers/tien.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Derek Nguyen",
|
|
position: "Project Space Chair",
|
|
photo: "img/officers/derek.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Rafaella Gomes",
|
|
position: "Robocup Chair",
|
|
photo: "img/officers/rafaella.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Yash Puneet",
|
|
position: "Robocup Chair",
|
|
photo: "img/officers/yash.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Matthew Mikhailov",
|
|
position: "Supercomputing Chair",
|
|
photo: "img/officers/temp.png",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Josh Lapidario",
|
|
position: "Quarterly Projects Chair",
|
|
photo: "img/officers/josh.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Sanh Nguyen",
|
|
position: "Quarterly Projects Chair",
|
|
photo: "img/officers/temp.png",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Vuong Bui",
|
|
position: "Professional Chair",
|
|
photo: "img/officers/vuong.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Jason Liang",
|
|
position: "Professional Chair",
|
|
photo: "img/officers/jason.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Mohak Vaswani",
|
|
position: "Technical Chair",
|
|
photo: "img/officers/mohak.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Yusuf Morsi",
|
|
position: "Technical Chair",
|
|
photo: "img/officers/temp.png",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Shaun Garcia",
|
|
position: "Technical Chair",
|
|
photo: "img/officers/temp.png",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Dennis Liang",
|
|
position: "Outreach Chair",
|
|
photo: "img/officers/dennis.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Daniel Chen",
|
|
position: "Outreach Chair",
|
|
photo: "img/officers/daniel.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Parisa Shahabi",
|
|
position: "Social Chair",
|
|
photo: "img/officers/parisa.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Matthew Yik",
|
|
position: "Social Chair",
|
|
photo: "img/officers/temp.png",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Jiliana Tiu",
|
|
position: "Webmaster",
|
|
photo: "img/officers/jiliana.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Raymond Wang",
|
|
position: "Webmaster",
|
|
photo: "img/officers/temp.png",
|
|
email: "raymond@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Sankalp Kaushik",
|
|
position: "PR Chair - Media",
|
|
photo: "img/officers/sankalp.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
{
|
|
name: "Stephanie Xu",
|
|
position: "PR Chair - Graphics",
|
|
photo: "img/officers/stephanie.jpg",
|
|
email: "email@ucsd.edu",
|
|
},
|
|
];
|