+ In 2015, four students organized themselves to compete in the national robotics tournament of Mexico, called TMR. They achieved the pass for the international by gaining 1st place in the category Rescue Maze. Astonished by the different tech levels of other countries, they started RoBorregos, with the intention of sharing this knowledge and experiences through generations.
+
+
+
+
+
+
+
+
+
+
+
+
+ What we develop for
+
+
+ Our vision is to become, in the next decade, the best robotics team in Latin America, in national and international competitions for university students and be able to promote technological development in Mexico.
+
+
+ We want you to be part of our team!
+
+
+ Every year, we recruit new members that are studying at Tec of Monterrey, Campus Monterrey, who are passionate in developing robots.
+
+ Candidates is a program we host during the August-December semester. Where we offer free basic courses for everyone to learn about mechanics, electronics, and software with arduino. Wanting to inspire young college students to get hands-on developing technology. Near the end of the semester, we held a competition to encourage teamwork and new team members are recruited.
+
+
+ By providing us an anonymous donation, you can give us the necessary resources for us to develop technology and compete!
+
+
+
+ Contact us
+
+ for more information!
+
+
+
+ We participate in different national and international competitions for autonomous robots such as Mexico's TMR (Torneo Mexicano de Robótica), RoboCup, and IEEE LARC (Latin American Robotics Competition). As a team, want to demonstrate the potential of Mexico in the development and innovation of technology.
+
+
+
+
+
+
+
+
+
+ Social Projects
+
+
+ We like to share everything we’ve learned with the community, giving free classes, workshops and participating in webinars where we can talk and teach about all the technologies we’ve used and all the experiences we’ve had that inspire us.
+
+
+
+
+
+
+
+
+
+ Events & Outreach
+
+
+ We participate in congresses and events such as INCMty, Conexión Tec, The International Congress of Mechatronics - Automatization and Technology, Semana i and many more.
+
+
+
+
+
+
+
+
+
+ Student Community
+
+
+ To reach our community, we give free workshops about useful technologies such as: ROS, Git and Machine Learning, as well as our annual biggest event: Candidates, where the team gives weekly classes of basic programming, mechanics and electronics for anyone in the university interested, and organize a robotics tournament to get new members.
+
+ RoBorrego’s community is made by students with different skills in robotics, logistics and networking, all joined with a passion for exploring new technologies and sharing their knowledge with everybody.
+
+ );
+ }
}
-export default MembersJoinUs;
\ No newline at end of file
+export default MembersJoinUs;
diff --git a/src/components/Members/MembersJoinUs/images/pattern.png b/src/components/Members/MembersJoinUs/images/pattern.png
deleted file mode 100644
index 78c2cee3..00000000
Binary files a/src/components/Members/MembersJoinUs/images/pattern.png and /dev/null differ
diff --git a/src/components/NavBar/NavBar.css b/src/components/NavBar/NavBar.css
index 7eb008cf..f289c897 100644
--- a/src/components/NavBar/NavBar.css
+++ b/src/components/NavBar/NavBar.css
@@ -1,47 +1,64 @@
#app-navbar {
- height: 48px;
- padding-top: 0;
- padding-bottom: 0;
+ height: 48px;
+ padding: 0 1px 0 0;
+}
+
+#app-navbar .navbar-brand {
+ margin-left: 20px;
+ margin-right: 20px;
}
#app-navbar #navbar-logo {
- width: 35px;
- height: 35px;
- margin-left: 5px;
- margin-right: 5px;
+ width: 35px;
+ height: 35px;
}
#app-navbar #responsive-navbar {
- height: 100%;
+ height: 100%;
+}
+
+#app-navbar .navbar-toggler {
+ margin-left: 20px;
+ margin-right: 20px;
+}
+
+@media only screen and (max-width : 992px) {
+ #app-navbar .navbar-nav {
+ height: 100%;
+ width: 100%;
+ align-items: center;
+ background-color: rgb(25, 30, 35);
+ }
}
#app-navbar .navbar-nav {
- height: 100%;
- align-items: center;
+ height: 100%;
+ width: 100%;
+ align-items: center;
}
#app-navbar .navbar-nav .navbar-btn {
- height: 100%;
- padding-left: 20px;
- padding-right: 20px;
+ padding-left: 20px;
+ padding-right: 20px;
+ padding-bottom: 13px;
}
#app-navbar .navbar-nav .navbar-btn.active {
- color: rgb(255, 165, 0);
- border-bottom: 2px solid;
+ color: rgb(0, 225, 250);
+ border-bottom: 2px solid;
}
#app-navbar .navbar-nav .navbar-btn-legend {
- transition: 0.2s;
- transform: translateY(4px);
- color: rgba(255, 255, 255, 0.8);
+ transition: 0.2s;
+ transform: translateY(4px);
+ color: rgba(255, 255, 255, 0.8);
}
#app-navbar .navbar-nav .navbar-btn:hover .navbar-btn-legend {
- transform: translateY(1px);
- color: rgb(255, 165, 0);
+ transform: translateY(1px);
+ color: rgb(0, 225, 250);
}
#app-navbar .navbar-nav .navbar-btn.active .navbar-btn-legend {
- color: rgb(255, 165, 0);
-}
\ No newline at end of file
+ color: rgb(0, 225, 250);
+}
diff --git a/src/components/NavBar/NavBar.js b/src/components/NavBar/NavBar.js
index ad06d5c7..e7cba501 100644
--- a/src/components/NavBar/NavBar.js
+++ b/src/components/NavBar/NavBar.js
@@ -2,82 +2,83 @@ import React, { Component } from 'react';
import { Navbar, Nav } from 'react-bootstrap';
import { Link } from 'react-router-dom';
import logo from 'images/white_logo.png';
-import './NavBar.css'
+import './NavBar.css';
class NavBar extends Component {
- constructor(props) {
- super(props);
+ constructor(props) {
+ super(props);
- this.handleNavbarClick = this.handleNavbarClick.bind(this);
+ this.handleNavbarClick = this.handleNavbarClick.bind(this);
- this.routes = props.routes;
+ this.routes = props.routes;
- const complete_path = window.location.pathname;
- const first_slash_index = complete_path.indexOf('/');
- const second_slash_index = complete_path.indexOf('/', first_slash_index + 1);
- const current_path = second_slash_index === -1
- ? complete_path.substring(0, complete_path.length)
- : complete_path.substring(0, second_slash_index);
- this.state = {
- active_button: current_path
- };
- }
+ const complete_path = window.location.pathname;
+ const first_slash_index = complete_path.indexOf('/');
+ const second_slash_index = complete_path.indexOf('/', first_slash_index + 1);
+ const current_path = second_slash_index === -1
+ ? complete_path.substring(0, complete_path.length)
+ : complete_path.substring(0, second_slash_index);
+ this.state = {
+ active_button: current_path
+ };
+ }
- handleNavbarClick(index) {
- this.setState(state => ({
- active_button: index
- }));
- }
+ handleNavbarClick(index) {
+ this.setState(state => ({
+ active_button: index
+ }));
+ }
- getClassName(path) {
- return 'navbar-btn' + ((path === this.state.active_button) ? ' active' : '');
- }
+ getClassName(path) {
+ return 'navbar-btn' + ((path === this.state.active_button) ? ' active' : '');
+ }
- render() {
- return (
-
-
-
-
-
-
-
+
+
+ );
+ }
}
-export default NavBar;
\ No newline at end of file
+export default NavBar;
diff --git a/src/constants.js b/src/constants.js
new file mode 100644
index 00000000..77181430
--- /dev/null
+++ b/src/constants.js
@@ -0,0 +1,4 @@
+export const LARGE_WIDTH = 1200;
+export const MEDIUM_WIDTH = 992;
+export const SMALL_WIDTH = 768;
+export const MOBILE_WIDTH = 414;
diff --git a/src/data/candidates.json b/src/data/candidates.json
new file mode 100644
index 00000000..dfc2b0b8
--- /dev/null
+++ b/src/data/candidates.json
@@ -0,0 +1,20 @@
+{
+ "events": [
+ {
+ "title": "Programmer",
+ "description": "Interested in programming? Join the team to program the best robots. You don’t need to be an expert, all we want is passion and willingness to learn!"
+ },
+ {
+ "title": "Mechanics",
+ "description": "Love designing robots? It is okay to be new. Come and join the team to design and build the best autonomous robots!"
+ },
+ {
+ "title": "Electronics",
+ "description": "Interested in circuit boards and other hardware? Come, learn and grow with us! It will be electrifying."
+ },
+ {
+ "title": "Marketing",
+ "description": "Want to show your advertising skills and go on a trip internationally? Help create the image of RoBorregos! Join the team!"
+ }
+ ]
+}
diff --git a/src/data/competitions.json b/src/data/competitions.json
new file mode 100644
index 00000000..03aad470
--- /dev/null
+++ b/src/data/competitions.json
@@ -0,0 +1,28 @@
+{
+ "competitions": [
+ {
+ "name": "Home",
+ "img": "competitions/home.jpeg"
+ },
+ {
+ "name": "Maze",
+ "img": "competitions/maze.png"
+ },
+ {
+ "name": "Soccer Light",
+ "img": "competitions/soccer_light.png"
+ },
+ {
+ "name": "Soccer Open",
+ "img": "competitions/soccer_open.png"
+ },
+ {
+ "name": "LARC Open",
+ "img": "competitions/larc.png"
+ },
+ {
+ "name": "VSSS",
+ "img": "competitions/vsss.jpg"
+ }
+ ]
+}
diff --git a/src/data/members.json b/src/data/members.json
index a5c17ff6..d425fe9d 100644
--- a/src/data/members.json
+++ b/src/data/members.json
@@ -1,254 +1,916 @@
{
- "members": [
- {
- "id": 1,
- "img": "emilio_chavez.jpg",
- "name": "Emilio",
- "lastname": "Chavez",
- "role": "Software development",
- "github": "https://github.com/ChavezE",
- "github_user": "@ChavezE",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 2,
- "img": "alejandro_garza.jpg",
- "name": "Alejandro",
- "lastname": "Garza",
- "role": "Software development",
- "github": "https://github.com/alexhor22",
- "github_user": "@alexhor22",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 3,
- "img": "alexis_virgen.jpg",
- "name": "Alexis",
- "lastname": "Virgen",
- "role": "Mechanical design",
- "github": "https://github.com/SAlexisvf",
- "github_user": "@SAlexisvf",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 4,
- "img": "javier_escamilla.jpg",
- "name": "Javier",
- "lastname": "Escamilla",
- "role": "Mechanical design",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 5,
- "img": "ivan_sol.jpg",
- "name": "Ivan",
- "lastname": "Sol",
- "role": "Mechanical design",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 6,
- "img": "greg_espinosa.jpg",
- "name": "Greg",
- "lastname": "Espinosa",
- "role": "Electronics",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 7,
- "img": "clara_gutierrez.jpg",
- "name": "Clara",
- "lastname": "Gutierrez",
- "role": "Mechanical design",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 8,
- "img": "paul_vazquez.jpg",
- "name": "Paul",
- "lastname": "Vazquez",
- "role": "Software development",
- "github": "https://github.com/paulvazbad",
- "github_user": "@paulvazbad",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 9,
- "img": "jesus_anaya.jpg",
- "name": "Jesús",
- "lastname": "Anaya",
- "role": "Software development",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 10,
- "img": "gabriela_mi.jpg",
- "name": "Gabriela",
- "lastname": "MI",
- "role": "Mechanical design",
- "github": "https://github.com/GabrielaMl",
- "github_user": "@GabrielaMl",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 11,
- "img": "nestor_maldonado.jpg",
- "name": "Nestor",
- "lastname": "Maldonado",
- "role": "Software development",
- "github": "https://github.com/nessmp",
- "github_user": "@nessmp",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 12,
- "img": "ricardo_osorio.jpg",
- "name": "Ricardo",
- "lastname": "Osorio",
- "role": "Mechanical design",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 13,
- "img": "ernesto_cervantes.jpg",
- "name": "Ernesto",
- "lastname": "Cervantes",
- "role": "Software development",
- "github": "https://github.com/netocervantes98",
- "github_user": "@netocervantes98",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 14,
- "img": "alberto_jahuey.jpg",
- "name": "Alberto",
- "lastname": "Jahuey",
- "role": "Software development",
- "github": "https://github.com/AJahueyM",
- "github_user": "@AJahueyM",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 15,
- "img": "eduardo_sanchez.jpg",
- "name": "Eduardo",
- "lastname": "Sánchez",
- "role": "Software development",
- "github": "https://github.com/gallosanchez23",
- "github_user": "@gallosanchez23",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 16,
- "img": "yulisa_medina.jpg",
- "name": "Yulisa",
- "lastname": "Medina",
- "role": "Software development",
- "github": "https://github.com/YulisaM2",
- "github_user": "@YulisaM2",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 17,
- "img": "iqui_balam.jpg",
- "name": "Iqui",
- "lastname": "Balam",
- "role": "Mechanical design",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 18,
- "img": "roberto_galindo.jpg",
- "name": "Roberto",
- "lastname": "Galindo",
- "role": "Mechanical design",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 19,
- "img": "ana_garza.jpg",
- "name": "Ana",
- "lastname": "Garza",
- "role": "Mechanical design",
- "github": "https://github.com/AnaGarza",
- "github_user": "@AnaGarza",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 20,
- "img": "arcelia_villasenor.jpg",
- "name": "Arcelia",
- "lastname": "Villaseñor",
- "role": "Software development",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 21,
- "img": "tomas_lugo.jpg",
- "name": "Tomás",
- "lastname": "Lugo",
- "role": "Software development",
- "github": "https://github.com/tomvik",
- "github_user": "@tomvik",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 22,
- "img": "aurora_tijerina.jpg",
- "name": "Aurora",
- "lastname": "Tijerina",
- "role": "Software development",
- "github": "https://github.com/AuroTB",
- "github_user": "@AuroTB",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 23,
- "img": "eric_castillo.jpg",
- "name": "Eric",
- "lastname": "Castillo",
- "role": "Electronics",
- "github": "#",
- "github_user": "@",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 24,
- "img": "antonio_rodriguez.jpg",
- "name": "Antonio",
- "lastname": "Rodríguez",
- "role": "Software development",
- "github": "https://github.com/AntonioRdzNav",
- "github_user": "@AntonioRdzNav",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- },
- {
- "id": 25,
- "img": "diego_garza.jpg",
- "name": "Diego",
- "lastname": "Garza",
- "role": "Software development",
- "github": "https://github.com/chhcd",
- "github_user": "@chhcd",
- "description": "Miembro activo del equipo internacional RoBorregos. Evidentemente entre más larga sea la descripción de la persona más texto se mostrará, y por ende, más completa se va a ver la página. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- }
- ]
+ "members": [
+ {
+ "id": "1",
+ "name": "Diego",
+ "lastname": "Garza",
+ "status": "inactive",
+ "role": "Software Development",
+ "subtitle": "Founder & Alumni",
+ "class": "2015",
+ "semesters": "8",
+ "degree": "ISD",
+ "description": "Co-Founder of the RoBorregos robotics team, member of the Mexican Robotics Federation, Software Engineer working in the WHEA team inside Microsoft (Seattle), Technical Committee member for RCJ Rescue, exchange program in Carnegie Mellon University and Selider alumni.\\n\\n\nIs passionate about empowering the latinx community, inspiring young dreamers to improve every day with optimism and leadership, creating digital content in his YouTube channel (@Dieguinilombrin) and Podcast (Diego Garza Podcast).",
+ "github": "https://github.com/chhcd",
+ "github_user": "chhcd",
+ "linkedin": "https://www.linkedin.com/in/diego-garza-rodr%C3%ADguez-a45b2197/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "diego.garza.rdz@gmail.com",
+ "Semester": "0"
+ },
+ {
+ "id": "3",
+ "name": "Gerardo",
+ "lastname": "Consuelos Fern\u00e1ndez",
+ "status": "inactive",
+ "role": "Mechanical Design",
+ "subtitle": "Founder & Alumni",
+ "class": "2015",
+ "semesters": "9",
+ "degree": "IMT",
+ "description": "Hi, I'm Gerardo. As one of the founders I had the chance to cultivate, and watch the team grow. My passion is finding solutions to new problems using Artificial Intelligence. My current works are related to the field of image classification and particularly prediction probability calibration on convolutional neural networks (CNNs).",
+ "github": "https://github.com/GerardoConsuelos",
+ "github_user": "GerardoConsuelos",
+ "linkedin": "https://www.linkedin.com/in/gconsuelosf/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "gconsuelosf@gmail.com",
+ "Semester": "0"
+ },
+ {
+ "id": "4",
+ "name": "Sebasti\u00e1n",
+ "lastname": "Rivera ",
+ "status": "inactive",
+ "role": "Software Development",
+ "subtitle": "Founder & Alumni",
+ "class": "2015",
+ "semesters": "9",
+ "degree": "ISD",
+ "description": "Hi, I am Sebastian. As part of the founders, I had the opportunity to work on early development stages of the projects Roborregos is developing. My passion is to break down real-world problem into actionable tasks that could be solved through programming and engineering in general. I am working as a full time Driver Software Engineer at National Instruments.",
+ "github": "https://github.com/sebasrivera96",
+ "github_user": "sebasrivera96",
+ "linkedin": "https://www.linkedin.com/in/sebasti%C3%A1n-rivera-gonz%C3%A1lez-0711a967/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "sebas.rivera96@gmail.com",
+ "Semester": "0"
+ },
+ {
+ "id": "5",
+ "name": "Alejandro",
+ "lastname": "Garza",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2015",
+ "semesters": "9",
+ "degree": "ISD",
+ "description": "I am Alejandro! Part of the second generation of the team. I am really passionate about technology and development. I really love learning new things and sharing the knowledge, thats what RoBorregos is all about. ",
+ "github": "https://github.com/alexhor22",
+ "github_user": "alexhor22",
+ "linkedin": "https://linkedin.com/in/alejandrogarzaisd/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "",
+ "Semester": "10"
+ },
+ {
+ "id": "7",
+ "name": "Cinthia",
+ "lastname": "Sanchez ",
+ "status": "inactive",
+ "role": "Electronics",
+ "subtitle": "",
+ "class": "2015",
+ "semesters": "9",
+ "degree": "ISD",
+ "description": "Hi, I\u2019m Cinthia. I was part of the team until a year ago when I transferred to Guadalajara to graduate as ITE and finish my internship at Intel. As a member of Roborregos I had the opportunity to work electronics and meet a lot of great hard-working people.",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/cinthia-abigail-sanchez-silva-805131184/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "c.abigailss97@outlook.com",
+ "Semester": "10"
+ },
+ {
+ "id": "8",
+ "name": "Clara",
+ "lastname": "Guti\u00e9rrez",
+ "status": "active",
+ "role": "Web Design/Dev & Mechanical Design",
+ "subtitle": "",
+ "class": "2015",
+ "semesters": "9",
+ "degree": "IMT",
+ "description": "Hey! I'm Clara, a mechatronics degree student finishing my 10th and last semester. Currently I'm part of the web team (yes, we developed this cool website), where I'm in charge of the web design. I started my path in the team working on mechanical design, which is another one of my passions. I recently came back from Germany where I developed skills in radar development & robotics. Apart from my engineer side, I also love food, calligraphy and sport. ",
+ "github": "https://github.com/ClaraGtz",
+ "github_user": "ClaraGtz",
+ "linkedin": "https://www.linkedin.com/in/claragtzjaime/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "claragtzjaime@gmail.com",
+ "Semester": "10"
+ },
+ {
+ "id": "9",
+ "name": "Diego",
+ "lastname": "Cardozo ",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2015",
+ "semesters": "9",
+ "degree": "ISD",
+ "description": "I'm Diego Cardozo, a student of ISD in Tec. I have been part of the team since some year ago and I have participated in different competitions as a programmer. My experience has been with C++, Arduino, Python, etc. I like how there are a lot of technologies open to everyone that we can use and improve.",
+ "github": "https://github.com/diegocardozo97",
+ "github_user": "diegocardozo97",
+ "linkedin": "https://mx.linkedin.com/in/diego-cardozo",
+ "resume_link": "",
+ "tags": "",
+ "Email": "dcardozo167@gmail.com",
+ "Semester": "9"
+ },
+ {
+ "id": "11",
+ "name": "Jos\u00e9 Eduardo",
+ "lastname": "S\u00e1nchez",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2015",
+ "semesters": "9",
+ "degree": "ITC",
+ "description": ":D",
+ "github": "https://github.com/gallosanchez23",
+ "github_user": "gallosanchez23",
+ "linkedin": "https://www.linkedin.com/in/jose-eduardo-sanchez-yepiz-24201710b/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "gallo.sanchez23@gmail.com",
+ "Semester": "10"
+ },
+ {
+ "id": "13",
+ "name": "Tom\u00e1s",
+ "lastname": "Lugo",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2015",
+ "semesters": "9",
+ "degree": "ISD",
+ "description": "I enjoy learning and I want to teach what I can to help others grow to be the best they can be.\nOn my professional field I'm mainly interested on control systems, optimization, and computer vision. However, I'm always open to try new areas to further expand my capabilities.\nI like working out, listening to audiobooks and hanging out with friends.",
+ "github": "https://github.com/tomvik",
+ "github_user": "tomvik",
+ "linkedin": "https://www.linkedin.com/in/tomaslbmi",
+ "resume_link": "",
+ "tags": "",
+ "Email": "sebas.rivera96@gmail.com",
+ "Semester": "10"
+ },
+ {
+ "id": "14",
+ "name": "Alexis",
+ "lastname": "Virgen",
+ "status": "active",
+ "role": "Software development & Mechanical Design",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "7",
+ "degree": "ISD",
+ "description": "I'm Alexis, student of 8th semester majoring in Digital Systems and Robotics. I am currently developing the vision system of the RoboCup @Home category and I am very passionate about Astronomy and Data Science.",
+ "github": "https://github.com/SAlexisvf",
+ "github_user": "SAlexisvf",
+ "linkedin": "https://www.linkedin.com/in/salexisvirgen",
+ "resume_link": "",
+ "tags": "",
+ "Email": "",
+ "Semester": ""
+ },
+ {
+ "id": "15",
+ "name": "Ana",
+ "lastname": "Garza",
+ "status": "active",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "7",
+ "degree": "BAA",
+ "description": "Sup, I'm Any! I study Animation and Digital Arts in 8 semester. Right now, I am in charge with Noelia of the Social Media of the Team. I am also participating in VSSS and helping with with the design of the web page. I'm specialized in rigging 3D Characters. I would love to work in VR/AR, films or videogames!",
+ "github": "https://github.com/AnaGarza",
+ "github_user": "AnaGarza",
+ "linkedin": "https://www.linkedin.com/in/garzana3d/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a00820647@itesm.mx",
+ "Semester": "8"
+ },
+ {
+ "id": "16",
+ "name": "Arcelia",
+ "lastname": "Villase\u00f1or",
+ "status": "inactive",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "5",
+ "degree": "ISD",
+ "description": "Hi, I'm Arce. I used to work as a mechanical designer, but now I\u2019m focusing more into software development. I enjoy working on front-end development for mobile (Android) and I just started to learn Web and am excited to continue learning.",
+ "github": "https://github.com/Arce2603",
+ "github_user": "Arce2603",
+ "linkedin": "https://www.linkedin.com/in/arcelia-villase%C3%B1or/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a01196668@itesm.mx",
+ "Semester": "8"
+ },
+ {
+ "id": "17",
+ "name": "Aurora",
+ "lastname": "Tijerina",
+ "status": "comitee",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "7",
+ "degree": "ISD",
+ "description": "Hey! I'm Aurora, student of Digital Systems and Robotics. Currently I am part of the Executive Comitee of the team, as well as PM developer of the Navigation area in the competition of @HOME. I love teamwork, trying new tech, and exploring its limits in a creative way. I am interested in front-end, AR, computer vision, using interesting hardware, dancing and reading. It doesn't matter the circumstances, I'm always there for the team!",
+ "github": "https://github.com/AuroTB",
+ "github_user": "AuroTB",
+ "linkedin": "https://linkedin.com/in/aurotb",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a01196690@itesm.mx",
+ "Semester": "8"
+ },
+ {
+ "id": "18",
+ "name": "Ernesto",
+ "lastname": "Cervantes",
+ "status": "active",
+ "role": "Control Systems",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "7",
+ "degree": "ISD",
+ "description": "Hey there! My name is Ernesto and I am a junior student in robotics engineering. I have had the honor to work as a control systems programmer in a robot capable of going through an unknown maze, competition better know as Rescue Maze. I've done two summer internships at Microsoft and since January I started a research program at Harvard University. I am also the CEO of ONEILA.",
+ "github": "https://github.com/netocervantes98",
+ "github_user": "netocervantes98",
+ "linkedin": "https://www.linkedin.com/in/netocervantes98",
+ "resume_link": "",
+ "tags": "",
+ "Email": "ernesto@oneila.mx",
+ "Semester": "8"
+ },
+ {
+ "id": "19",
+ "name": "Gabriela",
+ "lastname": "Mendoza",
+ "status": "active",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "7",
+ "degree": "IMT",
+ "description": "Hello! I'm Gaby, a Mechatronics student in 8th semester. Currently, I'm participating in an exchange program with DHIK to obtain a Double Degree in Germany. Previously, I've been mainly involved in mechanical design, but I have also had recent experience with programming, especially in small competitions and my internships. I am interested in projects that involve technological development, efficiency and support sustainable energy solutions. My past experiences have led me to work in both independent and team projects, and I believe group projects are an excellent way to share advice and support each other. In my free time i like to read mystery books, ice skate, and play basketball.",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/gabriela-mendoza-leal/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "gabrielaguadalupe98@gmail.com",
+ "Semester": "8"
+ },
+ {
+ "id": "20",
+ "name": "Greg",
+ "lastname": "Espinosa",
+ "status": "inactive",
+ "role": "Electronics",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "6",
+ "degree": "ISD",
+ "description": "Hi, I am Greg Espinosa Carrillo a former Roborrego. My passion is learning new stuff oriented to programing and electronics. I am currently working on artificial intelligence projects for entretainment to put in action my knowledge.",
+ "github": "",
+ "github_user": "Greg0909",
+ "linkedin": "Greg Espinosa Carrillo",
+ "resume_link": "",
+ "tags": "",
+ "Email": "grega1196764@gmail.com",
+ "Semester": "8"
+ },
+ {
+ "id": "23",
+ "name": "Osvaldo",
+ "lastname": "Alvarez",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "7",
+ "degree": "ISD",
+ "description": "Hi! I\u2019m Osvaldo, a senior student in Computer Engineering. I\u2019m grateful to being part of RoBorregos since 2016 where I\u2019ve had the opportunity to work as a software developer, focusing in navigation systems and computer vision algorithms. I'm passionate about developing new technologies to help other people. Also, I\u2019ve done two internships with Microsoft so far where I\u2019ve had the opportunity to make a great impact to people around the globe. ",
+ "github": "https://github.com/Osvaldoav/",
+ "github_user": "Osvaldoav",
+ "linkedin": "https://www.linkedin.com/in/jorge-osvaldo-alvarez-valdez-724030141/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "",
+ "Semester": "8"
+ },
+ {
+ "id": "24",
+ "name": "Paul",
+ "lastname": "Vazquez",
+ "status": "active",
+ "role": "Software Development & Electronics",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "7",
+ "degree": "ISD",
+ "description": "Hi, I'm Paul, a student of Digital Systems and Robotics. Currently, I am a programmer and leader in RoboCup @Home. I am passionate about @Home because it is a very scalable project with a lot of potential for social impact, in addition to allowing me to work with a multidisciplinary team. I am interested in working in embedded systems, web development and data science. I like cats and post music.",
+ "github": "https://github.com/paulvazbad",
+ "github_user": "paulvazbad",
+ "linkedin": "https://www.linkedin.com/in/paulvazbad",
+ "resume_link": "",
+ "tags": "",
+ "Email": "",
+ "Semester": ""
+ },
+ {
+ "id": "25",
+ "name": "Sebastian",
+ "lastname": "Esquer",
+ "status": "inactive",
+ "role": "Electronics",
+ "subtitle": "",
+ "class": "2016",
+ "semesters": "5",
+ "degree": "ISD",
+ "description": "Hi, I am Sebastian Esquer, I'm a former roborrego, I used to do computer vision and electronics, I learned a lot of important things during my time in the team about programming and electronics that is going to be very helpful for the rest of my life.",
+ "github": "https://github.com/eskrr",
+ "github_user": "eskrr",
+ "linkedin": "https://www.linkedin.com/in/sebastian-esquer-gaitan-99188a14a/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "seesga97@gmail.com",
+ "Semester": "8"
+ },
+ {
+ "id": "26",
+ "name": "Alberto",
+ "lastname": "Jahuey",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2017",
+ "semesters": "5",
+ "degree": "ISD",
+ "description": "My name is Alberto, I am very interested in programming and electronics, I am a mentor to several First teams and I really like helping when needed.",
+ "github": "https://github.com/AJahueyM",
+ "github_user": "AJahueyM",
+ "linkedin": "https://www.linkedin.com/in/alberto-jahuey-325179168/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a01039835@itesm.mx",
+ "Semester": "6"
+ },
+ {
+ "id": "28",
+ "name": "Antonio",
+ "lastname": "Rodr\u00edguez",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2017",
+ "semesters": "5",
+ "degree": "ISD",
+ "description": "Hi, I am Antonio and I am on my 8th semester of B.S. in Digital Systems and Robotics Engineering. I am currently studying and working in Germany as part of a scholarship from the DAAD. As member of RoBorregos, I had the chance of representing Mexico at the Latin American and Brazilian Robotics Competition 2018 along with other 4 team members. As Software Engineer student, I am interested in Web Development and Data Science. I like soccer, Netflix and sharing a good beer with friends.",
+ "github": "https://github.com/AntonioRdzNav",
+ "github_user": "AntonioRdzNav",
+ "linkedin": "https://www.linkedin.com/in/AntonioRdzNav/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "antoniordznav@outlook.com",
+ "Semester": "8"
+ },
+ {
+ "id": "29",
+ "name": "Eric",
+ "lastname": "Castillo",
+ "status": "inactive",
+ "role": "Electronics",
+ "subtitle": "",
+ "class": "2017",
+ "semesters": "3",
+ "degree": "IMT",
+ "description": "Hi, I am Eric, I study Mechatronics Engineer and electronics is my passion. I get interested very easily in things related to math, electronics, physics and programming. I\u00b4m always willing to expand areas of knowledge whenever a proyect shows up and I tend to understand new topics in a fast way since I like to analyze and make deductions. I have experience in many robotics competitions as you may find in my CV. I also like to do sports such Table Tennis, and I like to play and listen to music.",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/urielcastillo38/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a00821944@itesm.mx",
+ "Semester": "6"
+ },
+ {
+ "id": "30",
+ "name": "Iqui",
+ "lastname": "Heredia",
+ "status": "active",
+ "role": "Software Development & Mechanical Design",
+ "subtitle": "",
+ "class": "2017",
+ "semesters": "5",
+ "degree": "IMT",
+ "description": "I am Iqui Balam, currently studying Mechatronics Engineering and I am passionate in everything that has to do with technology and new discoveries. I have contributed to the team been responsible in areas such as Mechanical Design and Computer VIsion, applying what I learn in classes in the robots that we desing, always seeking to improve and help others, researching and contribute to our knowledge about the world. I like to play the guitar, listening to music and watching series. ",
+ "github": "https://github.com/IquiBalamHM",
+ "github_user": "IquiBalamHM",
+ "linkedin": "https://www.linkedin.com/in/iqui-balam/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "iquibalamhm@gmail.com",
+ "Semester": "6"
+ },
+ {
+ "id": "35",
+ "name": "Ricardo",
+ "lastname": "Osorio",
+ "status": "comitee",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2017",
+ "semesters": "5",
+ "degree": "IMT",
+ "description": "Hello everyone, I\u00b4m Ricardo, i\u00b4m currently studying mechatronics major, I\u00b4ve been working in Roborregos as robots mechanic for two years, i\u00b4m currently working in the development of a drone capable of produce energy. I love to design and create mechanical solutions that implies not only mechanisms, but also consider electronic components and circuitry. I am a great fan of F1 and my dream is to work with race cars, I also like ride my MTB bike and play my harp.",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/ricardo-osorio-oliveros-95a2561a5/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "",
+ "Semester": ""
+ },
+ {
+ "id": "36",
+ "name": "Roberto",
+ "lastname": "Galindo",
+ "status": "inactive",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2017",
+ "semesters": "3",
+ "degree": "IMA",
+ "description": "My name is Roberto, and I'm a former member of RoBorregos, right now I'm an student of 5th semester, and I liked too much to be in RoBorregos because I was able to take my skills outside of the classroom, and learn more about Mechanics and take my knowledge to a practical field. I learnt from other engineering fields in RoBorregos. I like to make teamwork because you are able to achieve a common goal and share the experience with other people. I am interested in working in Mechanical Design, and optimization of processes. I like to play videogames, watch youtube, series, movies, anime, etc. ",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/roberto-galindo-quintanilla-02552b180/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "robdlink@gmail.com",
+ "Semester": "5"
+ },
+ {
+ "id": "37",
+ "name": "Yulisa",
+ "lastname": "Medina",
+ "status": "comitee",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2017",
+ "semesters": "5",
+ "degree": "BCT",
+ "description": "Hey! My name is Yulisa and I am CS student in love with robotics, physics and music. The last couple of years in RoBorregos I have participated in RoboCup Jr. Maze, as the dev in charge of the main algorithm, and in the internal LARC 2019 team. In the latter one I also worked on the main algorithm, pathfinding and in the computer vision aspect of the challenge. I am always eager to learn and to share my experiences with others, so if you have any inquiries don't hesitate to email me \ud83d\ude01",
+ "github": "",
+ "github_user": "YulisaM2",
+ "linkedin": "https://www.linkedin.com/in/yulisa-medina",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a01570056@itesm.mx",
+ "Semester": "6"
+ },
+ {
+ "id": "38",
+ "name": "Aldo",
+ "lastname": "Samaniego",
+ "status": "active",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "3",
+ "degree": "ISD",
+ "description": "4 semestre ISD, Mecanico Maze y @HOME",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/aldo-jesus-samaniego-silva-b39a3018a/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "",
+ "Semester": ""
+ },
+ {
+ "id": "39",
+ "name": "Arath",
+ "lastname": "Hern\u00e1ndez",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "3",
+ "degree": "ISD",
+ "description": "Hi, I'm Arath. I am a programmer in Roborregos, specifically in the algorithm area. I had the opportunity to work in different rescue maze competences and thanks to that realize the love I have for robotics. In the team I have learn a lot about leadership and teamwork and I am very thankful to my partners for that. My favorite and only hobby is to play league of legends.",
+ "github": "https://github.com/ArathHernandez",
+ "github_user": "ArathHernandez",
+ "linkedin": "https://www.linkedin.com/in/erbey-arath-hernandez-villarreal-6a1594193/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a00825343@itesm.mx",
+ "Semester": "4"
+ },
+ {
+ "id": "42",
+ "name": "Jamir",
+ "lastname": "Leal",
+ "status": "active",
+ "role": "Electronics",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "3",
+ "degree": "ITI",
+ "description": "Hi, I'm Jamir, a student of 4th semester of the ITI degree. I started at RoBorregos in 2018 looking for new skills to learn, oriented into robotics. Currently, I am a communication programmer and electronics developer at LARC VSSS. I am interested in computer vision, web development and machine learning. I enjoy to do sports and learn new things.",
+ "github": "https://github.com/JamirLeal",
+ "github_user": "JamirLeal",
+ "linkedin": "https://linkedin.com/in/jamir-leal-cota-9988b6174",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a00826275@itesm.mx",
+ "Semester": "4"
+ },
+ {
+ "id": "43",
+ "name": "Jos\u00e9",
+ "lastname": "Cisneros",
+ "status": "active",
+ "role": "Software Development/Electronics",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "3",
+ "degree": "ISD",
+ "description": "Hello, I'm Jose, a student of a bachelor degree with a major in Computer Engineering and a minor in Digital Systems and Robotics. I am involved in the team as a programmer and electronic, both areas interest me a lot and I like to learn about them. Currently, I am a Software Developer in Robocup @Home, it is an interesting project with a lot of opportunity areas, thats why i am passionate about it. I love spending time playing basketball, listening music and hanging out with friends.",
+ "github": "https://github.com/Josecisneros001",
+ "github_user": "Josecisneros001",
+ "linkedin": "",
+ "resume_link": "",
+ "tags": "",
+ "Email": "joseacisnerosm@gmail.com",
+ "Semester": "4"
+ },
+ {
+ "id": "45",
+ "name": "Luis",
+ "lastname": "Garza",
+ "status": "active",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "3",
+ "degree": "IID",
+ "description": "Hi, I'm Luis , a student of 6th semester of the Mecatronics engineering. Currently, I'm working in manufacturing area and mechanical desing in RoboCup @Home. I am interested in everything about manufacturing and development of CNC machines. I like dogs and baseball.",
+ "github": "",
+ "github_user": "",
+ "linkedin": "",
+ "resume_link": "",
+ "tags": "",
+ "Email": "lufergvera@gmail.com",
+ "Semester": "6"
+ },
+ {
+ "id": "46",
+ "name": "Mauricio",
+ "lastname": "Ju\u00e1rez",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "3",
+ "degree": "ITC",
+ "description": "I'm Mauricio Juarez a student of 4th semester of Computer Science. In the team I work as a programmer and like to mentor the newer generations. I love technology, music and football. ",
+ "github": "https://github.com/zJuarez",
+ "github_user": "zJuarez",
+ "linkedin": "https://www.linkedin.com/in/mauricio-juarez/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "mji2000.741@gmail.com",
+ "Semester": "4"
+ },
+ {
+ "id": "47",
+ "name": "Miguel",
+ "lastname": "Elizondo",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "3",
+ "degree": "ISD",
+ "description": "Hi! I'm Miguel, a student of 4th semester of the Engineering in digital systems and robotics degree. I've working on the strategy development for the LARC VSSS competition. I love learning new things, and I always try to improve. I also like listening to music and hanging out with my girlfriend and friends. ",
+ "github": "https://github.com/Miguelelizondov",
+ "github_user": "Miguelelizondov",
+ "linkedin": "https://www.linkedin.com/in/miguelalejandroelizondovalladares/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "miguelelizondov@gmail.com",
+ "Semester": "4"
+ },
+ {
+ "id": "48",
+ "name": "Omar",
+ "lastname": "Montiel",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "3",
+ "degree": "ITC",
+ "description": "Hey! Hello, I'm Omar, a student in 4th semester of ITC (Computer Technologies Engineering). My role in the team is as a programmer, and I am currently helping develop the official Web site for the team. I love to solve any kind of puzzles and like to face tough challenges, so naturally, coding is a passion of mine. I hope to become a software developer in a big tech company in the future, so the contributions I make have a positive impact on millions of people just like you. I love God, and I'm a gamer, of course.",
+ "github": "https://github.com/OUMontiel",
+ "github_user": "OUMontiel",
+ "linkedin": "https://www.linkedin.com/in/omar-montiel/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "omarume@gmail.com",
+ "Semester": "4"
+ },
+ {
+ "id": "49",
+ "name": "Ricardo",
+ "lastname": "Chapa",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "3",
+ "degree": "ISD",
+ "description": "Hi, I'm Ricardo, a student of 4th of the ISDr degree. Currently, I'm a programmer on the Navigation area in RoboCup's @Home. I'm also working on the development of this webpage! I'm always looking to work on any scalable project that can have social impact. I'm interested in web development and robotics. I really like to see soccer games and play video games in my free time.",
+ "github": "",
+ "github_user": "RicardoChapaRomero",
+ "linkedin": "",
+ "resume_link": "",
+ "tags": "",
+ "Email": "ricardochaparomero@gmail.com",
+ "Semester": "4"
+ },
+ {
+ "id": "51",
+ "name": "Noelia",
+ "lastname": "Davila",
+ "status": "active",
+ "role": "Logistics & Networking",
+ "subtitle": "",
+ "class": "2018",
+ "semesters": "2",
+ "degree": "LIN",
+ "description": "Hi I am Noelia I am in my 5th semester of International Business. I am currently in the logistics and sponsership team. I like getting things done. I am intrested in CRM systems and technology thay allows business to improve there management. I like to write and love to try out new recipes.",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/noelia-g-davila/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "noelia.g.davila@hotmail.com",
+ "Semester": "5"
+ },
+ {
+ "id": "53",
+ "name": "Alejandro",
+ "lastname": "Ruiz",
+ "status": "active",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2019",
+ "semesters": "1",
+ "degree": "IM",
+ "description": "Hi, I\u2019m Alejandro Ruiz and I\u2019m currently in 2nd semester of IM at ITESM. At Roborregos, I help designing robots mechanically. I used to be in RCJ Soccer Open but now I\u2019m working in RoboCup @Home project. I enjoy very much this project because I think it is challenging in many ways and it would help me become a better engineer. I like physics, electronics, programming and maths a lot. I think I\u2019m very good at these but there\u2019s always new concepts and ideas to learn. I\u2019m always open to learn new things because i like to have different tools and resources in my day to day problems. I also like playing different sports, listening to relaxing music and I love cooking.",
+ "github": "https://github.com/RicardoChapaRomero",
+ "github_user": "",
+ "linkedin": "http://linkedin.com/in/alejandro-ruiz-8834141a5",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a01177251@itesm.mx",
+ "Semester": "2"
+ },
+ {
+ "id": "54",
+ "name": "Alexis Alberto",
+ "lastname": "Villanueva",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2019",
+ "semesters": "1",
+ "degree": "ISD",
+ "description": "Hi, I'm Zugasti a 4th semester student of the Digital Systems and Robotics degree. I am currently developing libraries and technologies for SoccerOpen. This project has allowed me to understand the use of different components and to translate my codes to something that has uses in the real life. My current interests are web development and computer architecture. Music is also a pretty big part of my life. ",
+ "github": "https://github.com/alexisavz",
+ "github_user": "alexisavz",
+ "linkedin": "https://www.linkedin.com/in/alexis-alberto-villanueva-zugasti-23a26a196/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "alexiszugasti@gmail.com",
+ "Semester": "4"
+ },
+ {
+ "id": "56",
+ "name": "Diego",
+ "lastname": "Prado",
+ "status": "active",
+ "role": "Electronics",
+ "subtitle": "",
+ "class": "2019",
+ "semesters": "1",
+ "degree": "IMT",
+ "description": "Hi, i'm Diego, i am currently in the second semester in the IMT degree. I am an electronic an leader in Rescue Maze. Im interesantes un Maze becouse it is a really good way to start in robotics, it also serves to develop your knowledge. On the other hand, I am interesed in industry 4.0. I like videogames and anime.",
+ "github": "",
+ "github_user": "",
+ "linkedin": "",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a00826917@itesm.mx",
+ "Semester": "2"
+ },
+ {
+ "id": "57",
+ "name": "Em\u00e9rico",
+ "lastname": "Pedraza",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2019",
+ "semesters": "1",
+ "degree": "ISD",
+ "description": "Hi, my name is Emerico. I am a fourth semester student of Digital Systems and Robotics Engineering and a member of the RoBorregos team. Last semester I developed the main algorithm for the robot that competed in the RoboCup Federation tournament in the Rescue Maze cathegory. I love this team because it has contributed to my personal growth and my ability to work in groups. My favorite areas are programming and digital systems. I like classical music and I belive that team work makes great things possible. ",
+ "github": "https://github.com/Eme112",
+ "github_user": "Eme112",
+ "linkedin": "https://www.linkedin.com/in/em%C3%A9rico-pedraza-195599133/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "emericopedraza12@gmail.com",
+ "Semester": "4"
+ },
+ {
+ "id": "58",
+ "name": "Gabriela Jazmin",
+ "lastname": "\u00c1lvarez",
+ "status": "active",
+ "role": "Electronics",
+ "subtitle": "",
+ "class": "2019",
+ "semesters": "1",
+ "degree": "ISD",
+ "description": "Hi, i'm Gaby, a student of 4th semester of the ISDr degree. I'm new at Roborregos and presently, i am a electronic technician in the category of Robocup Soccer Lightweight. I love my category because it's really challenging in the electronic design, also you can teach and learn a lot of each area in the team. I am interested in working in data science, neuroscience and medical robotics. I like to get involved in social service, play with my dog, take photos and eat mangos:D",
+ "github": "https://github.com/gabyjazzmin",
+ "github_user": "gabyjazzmin",
+ "linkedin": "",
+ "resume_link": "",
+ "tags": "",
+ "Email": "",
+ "Semester": ""
+ },
+ {
+ "id": "59",
+ "name": "Grecia",
+ "lastname": "Flores",
+ "status": "active",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2019",
+ "semesters": "1",
+ "degree": "IMT",
+ "description": "Hi, I am Grecia, a student of 2 semestre of the Engineerin in Mechatronic degree. Currently, I am Mechanic in Robocup @Maze. I am passionate about @Maze because it is an interesting begineer project. I am in this project to develop my abilities in mechanic. I am interested in working in more complex robotic projects in the future. I like music and photography",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/grecia-carilu-flores-moctezuma-4a97021a5/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "",
+ "Semester": ""
+ },
+ {
+ "id": "60",
+ "name": "Karyme",
+ "lastname": "Ezrr\u00e9",
+ "status": "active",
+ "role": "Mechanical Design",
+ "subtitle": "",
+ "class": "2019",
+ "semesters": "1",
+ "degree": "IID",
+ "description": "Hello, I'm Karyme Ezrr\u00e9, I am a second semester student of engineering in innovation and development, currently I am a mechanic in RoboCup Junior Soccer Lightweight, I really like it because it is a great mechanical challenge.",
+ "github": "",
+ "github_user": "Karyme-Ezrre",
+ "linkedin": "Karyme Ezrr\u00e9",
+ "resume_link": "",
+ "tags": "",
+ "Email": "A00828520@itesm.mx",
+ "Semester": "2"
+ },
+ {
+ "id": "61",
+ "name": "Keven",
+ "lastname": "Arroyo",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2019",
+ "semesters": "1",
+ "degree": "IE",
+ "description": "Hello, I\u2019m Keven, student of the Electronics Engineering program and tech enthusiast. I am a leader and programmer in the RoboCup Soccer Lightweight Junior. I\u2019ve greatly enjoyed this competition as it has been an outstanding opportunity to improve my programming skills and further my involvement in the robotics field. The challenges I have faced with my team have taught me the importance of teamwork as well as discipline and perseverance in all my future endeavors. I am interested in working in embedded systems, smart electronics, and autonomous vehicles. I like video games and swimming. ",
+ "github": "https://github.com/dake3601",
+ "github_user": "dake3601",
+ "linkedin": "https://linkedin.com/in/keven-g-arroyo-galindo-16a4491a5/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "dake.3601@gmail.com",
+ "Semester": "2"
+ },
+ {
+ "id": "62",
+ "name": "Marlon",
+ "lastname": "Romo",
+ "status": "active",
+ "role": "Software Development",
+ "subtitle": "",
+ "class": "2019",
+ "semesters": "1",
+ "degree": "IRS",
+ "description": "Hi my name is Marlon Romo I am currently studying my 2nd semester of Robotics and Digital Systems Engineering. I am a member of the International Robotics Representative Team of Tecnologico de Monterrey. Along with my team we created a fully autonomous robot capable of searching through a maze for victims as part of the RoboCup @Rescue Maze competition. My role as a Control System programmer was to ensure the precise movement and correct performance of the sensors behind the robot. This competition help me acquired several skills among them learning about PID algorithms and their applications. I am passionate about learning new technologies and solving problems. I am interested in gaining professional experience and one of my hobbies is playing baseball.",
+ "github": "https://github.com/MarlonB500",
+ "github_user": "MarlonB500",
+ "linkedin": "https://www.linkedin.com/in/marlonromo",
+ "resume_link": "",
+ "tags": "",
+ "Email": "marlon_romo@hotmail.com",
+ "Semester": "2"
+ },
+ {
+ "id": "63",
+ "name": "Karla",
+ "lastname": "Olvera",
+ "status": "active",
+ "role": "Logistics & Sponsorship",
+ "subtitle": "",
+ "class": "2020",
+ "semesters": "1",
+ "degree": "ITD",
+ "description": "Hi, I'm Karla, I'm currently studying the second semester of Digital Business Transformation. I am in Roborregos as a proud member of the Coordination of Logistics and Sponsorships, I believe in this organization because of its potencial as a major change agent and I am delighted of having the opportunity to work with such a diverse team that is an inspiration to me, to the community and to the upcoming generations of tech loving disruptors. I am interested in working in Project Management, Data Science and Business Intelligence. I am passionate about learning new things and in my free time I am a hyperactive reader, attempt of blogger and fitness fanatic. ",
+ "github": "https://github.com/karlysov",
+ "github_user": "karlysov",
+ "linkedin": "https://www.linkedin.com/in/karla-susana-olvera-vazquez-765764198/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "a01379097@itesm.mx",
+ "Semester": "2"
+ },
+ {
+ "id": "64",
+ "name": "Omar",
+ "lastname": "Gonz\u00e1lez",
+ "status": "active",
+ "role": "Logistics & Sponsorship",
+ "subtitle": "",
+ "class": "2020",
+ "semesters": "1",
+ "degree": "IRS",
+ "description": "Hi! I'm Omar, a student of second semester in IRS career. I represent Roborregos in an area that works with the logistics and sponsorships. I'm passionate with changing the world with talent, science and technology, to make social impact in our community. I love photography, robotics, business and movies. In the future I would like to work in the development of autonomous cars. ",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/omar-enrique-gonz%C3%A1lez-uresti-364961183/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "omaru38@icloud.com",
+ "Semester": "2"
+ },
+ {
+ "id": "65",
+ "name": "Rosalba ",
+ "lastname": "Flores",
+ "status": "active",
+ "role": "Logistics & Sponsorship",
+ "subtitle": "",
+ "class": "2020",
+ "semesters": "1",
+ "degree": "INA",
+ "description": "Hi, I\u2019m Rosalba, a student of 2 semester of the INA degree. I am a member of the CLP. I am passionate about the logistics and sponsorship because it\u2019s an essential part for a team, and I can help achieving the goals through the networking. In fact, I\u2019m interested about working in a whole different area. I would like to get involved in genetics and textiles investigations with nanotechnology. I like fashion and art.",
+ "github": "",
+ "github_user": "",
+ "linkedin": "https://www.linkedin.com/in/rosalba-flores-de-la-riva-097bb91a5/",
+ "resume_link": "",
+ "tags": "",
+ "Email": "rosalva_ce@hotmail.com",
+ "Semester": "3"
+ }
+ ]
}
\ No newline at end of file
diff --git a/src/data/positions.json b/src/data/positions.json
new file mode 100644
index 00000000..ca3be596
--- /dev/null
+++ b/src/data/positions.json
@@ -0,0 +1,21 @@
+{
+ "url_form": "https://docs.google.com/forms/u/0/",
+ "url_facebook": "https://www.facebook.com/RoBorregos/",
+ "positions": [{
+ "id": "1",
+ "title": "Programmer",
+ "shortDescription": "Interested in programming? Join the team to program the best robots. You don’t need to be an expert, all we want is passion to learn!"
+ }, {
+ "id": "2",
+ "title": "Electronics",
+ "shortDescription": "Interested in circuit boards and other hardware? Come, learn and grow with us! It will be electrifying."
+ }, {
+ "id": "3",
+ "title": "Mechanics",
+ "shortDescription": "Love designing robots? It is okay to be new. Come and join the team to design and build the best autonomous robots!"
+ }, {
+ "id": "4",
+ "title": "Marketing",
+ "shortDescription": "Want to show your advertising skills and go on a trip internationally? Help create the image of RoBorregos! Join the team!"
+ }]
+}
diff --git a/src/data/routes.json b/src/data/routes.json
index eb0945d4..0a4b5289 100644
--- a/src/data/routes.json
+++ b/src/data/routes.json
@@ -1,24 +1,29 @@
{
- "routes": [
- {
- "path": "/",
- "legend": "Home",
- "component": "Home"
- },
- {
- "path": "/about_us",
- "legend": "About us",
- "component": "AboutUs"
- },
- {
- "path": "/members",
- "legend": "Members",
- "component": "Members"
- },
- {
- "path": "/contact_us",
- "legend": "Contact us",
- "component": "ContactUs"
- }
- ]
-}
\ No newline at end of file
+ "routes": [
+ {
+ "path": "/",
+ "legend": "Home",
+ "component": "Home"
+ },
+ {
+ "path": "/about",
+ "legend": "About",
+ "component": "About"
+ },
+ {
+ "path": "/members",
+ "legend": "Members",
+ "component": "Members"
+ },
+ {
+ "path": "/contact",
+ "legend": "Contact",
+ "component": "Contact"
+ },
+ {
+ "path": "/candidates",
+ "legend": "Candidates",
+ "component": "Candidates"
+ }
+ ]
+}
diff --git a/src/data/sponsors.json b/src/data/sponsors.json
new file mode 100644
index 00000000..c29f3ea1
--- /dev/null
+++ b/src/data/sponsors.json
@@ -0,0 +1,68 @@
+{
+ "url_contact":"mailto:teamroborregos@gmail.com",
+ "sponsors": [
+ {
+ "name": "Tecnológico de Monterrey",
+ "img_path": "itesm.png",
+ "link": "https://tec.mx/es"
+ },
+ {
+ "name": "Steren",
+ "img_path": "steren.png",
+ "link": "https://www.steren.com.mx"
+ },
+ {
+ "name": "Oneila",
+ "img_path": "oneila.png",
+ "link": "http://www.oneila.mx"
+ }
+ ],
+ "packages": [
+ {
+ "name" : "Jumper",
+ "benefits" : [
+ "6 menciones genéricas en redes sociales (u/c bimestre)",
+ "Invitación a eventos y newsletters",
+ "Logo en nuestras playeras (espalda chico)",
+ "Logo en nuestra página oficial (chico)",
+ "Logo en lona del equipo (chico)"
+ ]
+ },
+ {
+ "name" : "Led",
+ "benefits" : [
+ "12 menciones genéricas en redes sociales (u/c mes)",
+ "2 publicaciones personalizadas en Facebook (u/c semestre)",
+ "Invitación a eventos y newsletters",
+ "Logo en nuestras playeras (espalda mediano)",
+ "Logo en nuestra página oficial (mediano)",
+ "Logo en lona del equipo (mediano)",
+ "Logo en nuestros robots (chico)"
+ ]
+ },
+ {
+ "name" : "Motor",
+ "benefits" : [
+ "24 menciones genéricas en redes sociales (2 c/mes)",
+ "4 publicaciones personalizadas en Facebook (2 c/semestre)",
+ "Invitación a eventos y newsletters",
+ "Logo en nuestras playeras (frente mediano)",
+ "Logo en nuestra página oficial (mediano)",
+ "Logo en lona del equipo (mediano)",
+ "Logo en nuestros robots (mediano)"
+ ]
+ },
+ {
+ "name" : "Robot",
+ "benefits" : [
+ "24 menciones genéricas en redes sociales (2 c/mes)",
+ "6 publicaciones personalizadas en Facebook (3 c/semestre)",
+ "Invitación a eventos y newsletters",
+ "Logo en nuestras playeras (frente grande)",
+ "Logo en nuestra página oficial (grande)",
+ "Logo en lona del equipo (grande)",
+ "Logo en nuestros robots (grande)"
+ ]
+ }
+ ]
+}
diff --git a/src/data/timeline.json b/src/data/timeline.json
new file mode 100644
index 00000000..dd734247
--- /dev/null
+++ b/src/data/timeline.json
@@ -0,0 +1,148 @@
+{
+ "events": [
+ {
+ "date": "March 2020",
+ "img_path": "35.jpg",
+ "title": "Covid-19 Response",
+ "description": "Unfortunately, both the TMR and Robocup Jr. were cancelled for this year, yet we continued working, creating online courses and webinars webinars as well as participating in different tech events."
+ },
+ {
+ "date": "February 2020",
+ "img_path": "29.jpg",
+ "title": "Regional 2020",
+ "description": "Diego, Emérico, Marlon and Grecia won 2nd place in Rescue Maze and Keven, Gabriela y Karyme won 3rd place in Soccer Open."
+ },
+ {
+ "date": "December 2019",
+ "img_path": "34.jpg",
+ "title": "First committee of Sponsorships and Networking",
+ "description": "A new position in the team opened for students to collaborate in the logistics of sponsorships and networking, as well as social media and image; The opportunity opened for any student of Tec de Monterrey to help us have a more multidisciplinary integration."
+ },
+ {
+ "date": "December 2019",
+ "img_path": "23.jpg",
+ "title": "1st Gen Grad",
+ "description": "Founders Diego, Emilio, Gerardo and Sebastian graduated."
+ },
+ {
+ "date": "October 2019",
+ "img_path": "33.jpg",
+ "title": "LARC OPEN 2019",
+ "description": "During the semester, a robot was developed for the LARC IEEE competition, Open category. The robot consisted of an autonomous car with a mechanism to grab metal blocks by means of electromagnets, along with a navigation and vision system to be able to leave the blocks in their corresponding places. In the end, we could not attend due to economic issues."
+ },
+ {
+ "date": "July 2019",
+ "img_path": "31.jpg",
+ "title": "Australia",
+ "description": "Arath, Aldo, Jamir and Mauricio obtained the “Best Hardware Solution” award in the RoboCup Jr. Rescue Maze, Sydney Australia."
+ },
+ {
+ "date": "March 2019",
+ "img_path": "22.jpg",
+ "title": "TMR 2019",
+ "description": "Arath, Aldo, Jamir y Juan Carlos won 1st place in Rescue Maze Category."
+ },
+ {
+ "date": "February 2019",
+ "img_path": "21.jpg",
+ "title": "Regional 2019",
+ "description": "Amin, Chapa, Pasquel and Omar won 1st place in Soccer Light Category."
+ },
+ {
+ "date": "January 2019",
+ "img_path": "28.jpg",
+ "title": "Formalization of @Home",
+ "description": "The RoBorregos’ @HOME team was formalized. The team was divided into different technology areas, integrating voice recognition, natural language processing and computer vision with neural networks, navigation, control and mechanical and structural design."
+ },
+ {
+ "date": "October 2018",
+ "img_path": "19.jpg",
+ "title": "LARC 2018",
+ "description": "1st place in Latin American and Brazilian Competition IEEE Open Challenge won by Alexis, Antonio, Ivan, Mariano, and Osvaldo. The robot consisted of an autonomous car with a mechanism to grab metal blocks with magnets, along with a navigation and vision system to be able to leave the blocks in their corresponding places."
+ },
+ {
+ "date": "June 2018",
+ "img_path": "18.jpg",
+ "title": "Canada",
+ "description": "Alberto, Greg and Iqui were the first ones to participate in Soccer Open internationally and Jahuey, Itzeld, Osorio and Yulisa participated in Rescue Maze in Montreal, Canada."
+ },
+ {
+ "date": "March 2018",
+ "img_path": "16.3.jpg",
+ "title": "TMR 2018 DRONES",
+ "description": "Alex Garza, Aurora Tijerina, Cristian Bentin and Paul Vazquez won 3rd and was the first time participating in Autonomous Drones Advanced Category, at Tec of Monterrey, Campus Monterrey."
+ },
+ {
+ "date": "March 2018",
+ "img_path": "16.jpg",
+ "title": "TMR 2018",
+ "description": "Alberto Jahuey, Itzel López, Ricardo Osorio and Yulisa Farron won 1st Place in Rescue Maze; Alberto López, Greg Espinosa, and Iqui Balam won 2nd in Soccer Open; Eric Uriel, Jesus Anaya, Isaac, Monica Nava and Roberto Galindo won 3rd in Soccer Light."
+ },
+ {
+ "date": "October 2017",
+ "img_path": "15.jpg",
+ "title": "LARC 2017",
+ "description": "Alex, Cardozo, Clara, Emilio, Javier and Nestor won 3rd place by a difference of 2pts."
+ },
+ {
+ "date": "July 2017",
+ "img_path": "12.jpg",
+ "title": "Japan",
+ "description": "Placing Mexico for the first time in the podium, Tomas, Alexis, Esquer and Ernesto won 3rd place in RoboCup Jr. Rescue Maze, Nagoya, Japan."
+ },
+ {
+ "date": "March 2017",
+ "img_path": "10.jpg",
+ "title": "TMR 2017",
+ "description": "Tomas, Esquer and Bernardo won 1st and Mariano, Alexis, Ernesto and Osvaldo won 2nd place in Rescue Maze."
+ },
+ {
+ "date": "February 2017",
+ "img_path": "9.jpg",
+ "title": "Regional 2017",
+ "description": "Tomas, Esquer, and Bernardo won 1st place in Rescue Maze. Angel, Ernesto, Gabriela, Ivan and Paul won 3rd place in Soccer Open and Cinthia, Aurora, Ana, Arcelia and Greg won 3rd in Soccer Light."
+ },
+ {
+ "date": "October 2016",
+ "img_path": "8.jpg",
+ "title": "LARC 2016",
+ "description": "Diego, Clara, Emilio, Gerardo and Sebastián won 2nd Place in Latin American and Brazilian Competition IEEE Open Challenge. "
+ },
+ {
+ "date": "July 2016",
+ "img_path": "6.jpg",
+ "title": "Germany",
+ "description": "Javier, Alex, Nestor and Cristian participated in RoboCup Rescue Maze."
+ },
+ {
+ "date": "March 2016",
+ "img_path": "4.5.jpg",
+ "title": "TMR 2016",
+ "description": "1st and 2nd Place in Rescue Maze TMR 2016, Ciudad Victoria, Tamaulipas, by Javier, Alex, Nestor, Christian, and Tomas, Diego, Enrique, Isabela and Melissa."
+ },
+ {
+ "date": "February 2016",
+ "img_path": "30.jpg",
+ "title": "Regional 2016 ",
+ "description": "Javier, Alex, Nestor and Christian won 1st Place in Rescue Maze Regional. Cinthia, Eduardo, Cardozo and Ian won 1st in Soccer Open."
+ },
+ {
+ "date": "August 2015",
+ "img_path": "3.jpg",
+ "title": "Team Foundation",
+ "description": "Team founders decided to create a program to teach the basics of robotics to Tec freshmen and then have an internal competition to find the best fit for the team. This event has become our annual “Candidates”."
+ },
+ {
+ "date": "July 2015",
+ "img_path": "2.jpg",
+ "title": "First International",
+ "description": "Diego, Emilio, Gerardo y Sebastián were the first to place Mexico in the Top 10 in RoboCup Jr. Rescue Maze in Hefei, China."
+ },
+ {
+ "date": "March 2015",
+ "img_path": "1.jpg",
+ "title": "First Step",
+ "description": "Diego, Emilio, Gerardo y Sebastián won first place in Rescue Maze at TMR 2015, Mexico City."
+ }
+ ]
+}
diff --git a/src/images/2dageneracion.jpg b/src/images/2dageneracion.jpg
new file mode 100644
index 00000000..e3d6d244
Binary files /dev/null and b/src/images/2dageneracion.jpg differ
diff --git a/src/images/3ergeneracion.jpg b/src/images/3ergeneracion.jpg
new file mode 100644
index 00000000..7836699e
Binary files /dev/null and b/src/images/3ergeneracion.jpg differ
diff --git a/src/images/4tageneracion.jpg b/src/images/4tageneracion.jpg
new file mode 100644
index 00000000..633685b4
Binary files /dev/null and b/src/images/4tageneracion.jpg differ
diff --git a/src/images/5tageneracion.jpg b/src/images/5tageneracion.jpg
new file mode 100644
index 00000000..fcda83b5
Binary files /dev/null and b/src/images/5tageneracion.jpg differ
diff --git a/src/images/about/about1.png b/src/images/about/about1.png
new file mode 100644
index 00000000..7d161384
Binary files /dev/null and b/src/images/about/about1.png differ
diff --git a/src/images/about/about2.jpg b/src/images/about/about2.jpg
new file mode 100644
index 00000000..458bf5d3
Binary files /dev/null and b/src/images/about/about2.jpg differ
diff --git a/src/images/candidates/candidates1.png b/src/images/candidates/candidates1.png
new file mode 100644
index 00000000..ec5eb55e
Binary files /dev/null and b/src/images/candidates/candidates1.png differ
diff --git a/src/images/candidates/candidates2.png b/src/images/candidates/candidates2.png
new file mode 100644
index 00000000..f082510e
Binary files /dev/null and b/src/images/candidates/candidates2.png differ
diff --git a/src/images/candidates/candidates3.png b/src/images/candidates/candidates3.png
new file mode 100644
index 00000000..0afed7d8
Binary files /dev/null and b/src/images/candidates/candidates3.png differ
diff --git a/src/images/competitions/home.jpeg b/src/images/competitions/home.jpeg
new file mode 100644
index 00000000..b161b8d7
Binary files /dev/null and b/src/images/competitions/home.jpeg differ
diff --git a/src/images/competitions/larc.png b/src/images/competitions/larc.png
new file mode 100644
index 00000000..0b02fe79
Binary files /dev/null and b/src/images/competitions/larc.png differ
diff --git a/src/images/competitions/maze.png b/src/images/competitions/maze.png
new file mode 100644
index 00000000..ae9542dd
Binary files /dev/null and b/src/images/competitions/maze.png differ
diff --git a/src/images/competitions/soccer_light.png b/src/images/competitions/soccer_light.png
new file mode 100644
index 00000000..1ce03103
Binary files /dev/null and b/src/images/competitions/soccer_light.png differ
diff --git a/src/images/competitions/soccer_open.png b/src/images/competitions/soccer_open.png
new file mode 100644
index 00000000..bb2c072e
Binary files /dev/null and b/src/images/competitions/soccer_open.png differ
diff --git a/src/images/competitions/vsss.jpg b/src/images/competitions/vsss.jpg
new file mode 100644
index 00000000..69727c02
Binary files /dev/null and b/src/images/competitions/vsss.jpg differ
diff --git a/src/images/events/2015_06_foundation.jpg b/src/images/events/2015_06_foundation.jpg
new file mode 100644
index 00000000..69588b63
Binary files /dev/null and b/src/images/events/2015_06_foundation.jpg differ
diff --git a/src/images/events/2015_07_first_international_competition.jpg b/src/images/events/2015_07_first_international_competition.jpg
new file mode 100644
index 00000000..57b44bfe
Binary files /dev/null and b/src/images/events/2015_07_first_international_competition.jpg differ
diff --git a/src/images/events/2015_foundation.jpg b/src/images/events/2015_foundation.jpg
new file mode 100644
index 00000000..a90b3985
Binary files /dev/null and b/src/images/events/2015_foundation.jpg differ
diff --git a/src/components/Members/MembersGrid/MemberModal/images/github_pattern.svg b/src/images/github_pattern.svg
similarity index 100%
rename from src/components/Members/MembersGrid/MemberModal/images/github_pattern.svg
rename to src/images/github_pattern.svg
diff --git a/src/images/github_pattern_clearer.svg b/src/images/github_pattern_clearer.svg
new file mode 100644
index 00000000..7aa5bf63
--- /dev/null
+++ b/src/images/github_pattern_clearer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/components/Members/MembersGrid/MemberModal/images/github_pattern_white.svg b/src/images/github_pattern_white.svg
similarity index 100%
rename from src/components/Members/MembersGrid/MemberModal/images/github_pattern_white.svg
rename to src/images/github_pattern_white.svg
diff --git a/src/images/header.png b/src/images/header.png
new file mode 100644
index 00000000..ea262ffd
Binary files /dev/null and b/src/images/header.png differ
diff --git a/src/images/home/HomeInformation/competitions.jpg b/src/images/home/HomeInformation/competitions.jpg
new file mode 100644
index 00000000..ffa1b3f0
Binary files /dev/null and b/src/images/home/HomeInformation/competitions.jpg differ
diff --git a/src/images/home/HomeInformation/events.jpg b/src/images/home/HomeInformation/events.jpg
new file mode 100644
index 00000000..18e9b6f5
Binary files /dev/null and b/src/images/home/HomeInformation/events.jpg differ
diff --git a/src/images/home/HomeInformation/events_small.jpg b/src/images/home/HomeInformation/events_small.jpg
new file mode 100644
index 00000000..ea5e391f
Binary files /dev/null and b/src/images/home/HomeInformation/events_small.jpg differ
diff --git a/src/images/home/HomeInformation/social.jpg b/src/images/home/HomeInformation/social.jpg
new file mode 100644
index 00000000..040c9062
Binary files /dev/null and b/src/images/home/HomeInformation/social.jpg differ
diff --git a/src/images/home/HomeInformation/students.jpg b/src/images/home/HomeInformation/students.jpg
new file mode 100644
index 00000000..94d5ac73
Binary files /dev/null and b/src/images/home/HomeInformation/students.jpg differ
diff --git a/src/images/home/team_2019.jpg b/src/images/home/team_2019.jpg
new file mode 100644
index 00000000..60ef5899
Binary files /dev/null and b/src/images/home/team_2019.jpg differ
diff --git a/src/images/info_background_1.jpg b/src/images/info_background_1.jpg
new file mode 100644
index 00000000..024c7c12
Binary files /dev/null and b/src/images/info_background_1.jpg differ
diff --git a/src/images/info_background_2.jpg b/src/images/info_background_2.jpg
new file mode 100644
index 00000000..a2f07f91
Binary files /dev/null and b/src/images/info_background_2.jpg differ
diff --git a/src/images/info_background_3.jpg b/src/images/info_background_3.jpg
new file mode 100644
index 00000000..d2410953
Binary files /dev/null and b/src/images/info_background_3.jpg differ
diff --git a/src/images/members/diego_garza.jpg b/src/images/members/1.jpg
similarity index 100%
rename from src/images/members/diego_garza.jpg
rename to src/images/members/1.jpg
diff --git a/src/images/members/javier_escamilla.jpg b/src/images/members/10.jpg
similarity index 100%
rename from src/images/members/javier_escamilla.jpg
rename to src/images/members/10.jpg
diff --git a/src/images/members/11.jpg b/src/images/members/11.jpg
new file mode 100644
index 00000000..6524ca4c
Binary files /dev/null and b/src/images/members/11.jpg differ
diff --git a/src/images/members/nestor_maldonado.jpg b/src/images/members/12.jpg
similarity index 100%
rename from src/images/members/nestor_maldonado.jpg
rename to src/images/members/12.jpg
diff --git a/src/images/members/tomas_lugo.jpg b/src/images/members/13.jpg
similarity index 100%
rename from src/images/members/tomas_lugo.jpg
rename to src/images/members/13.jpg
diff --git a/src/images/members/14.jpg b/src/images/members/14.jpg
new file mode 100644
index 00000000..660e1e36
Binary files /dev/null and b/src/images/members/14.jpg differ
diff --git a/src/images/members/ana_garza.jpg b/src/images/members/15.jpg
similarity index 100%
rename from src/images/members/ana_garza.jpg
rename to src/images/members/15.jpg
diff --git a/src/images/members/arcelia_villasenor.jpg b/src/images/members/16.jpg
similarity index 100%
rename from src/images/members/arcelia_villasenor.jpg
rename to src/images/members/16.jpg
diff --git a/src/images/members/17.jpg b/src/images/members/17.jpg
new file mode 100644
index 00000000..af0352ab
Binary files /dev/null and b/src/images/members/17.jpg differ
diff --git a/src/images/members/18.jpg b/src/images/members/18.jpg
new file mode 100644
index 00000000..48814184
Binary files /dev/null and b/src/images/members/18.jpg differ
diff --git a/src/images/members/19.jpg b/src/images/members/19.jpg
new file mode 100644
index 00000000..eac17acb
Binary files /dev/null and b/src/images/members/19.jpg differ
diff --git a/src/images/members/emilio_chavez.jpg b/src/images/members/2.jpg
similarity index 100%
rename from src/images/members/emilio_chavez.jpg
rename to src/images/members/2.jpg
diff --git a/src/images/members/20.jpg b/src/images/members/20.jpg
new file mode 100644
index 00000000..52b3ca5e
Binary files /dev/null and b/src/images/members/20.jpg differ
diff --git a/src/images/members/21.jpg b/src/images/members/21.jpg
new file mode 100644
index 00000000..5a513074
Binary files /dev/null and b/src/images/members/21.jpg differ
diff --git a/src/images/members/22.jpg b/src/images/members/22.jpg
new file mode 100644
index 00000000..bd9cd8a6
Binary files /dev/null and b/src/images/members/22.jpg differ
diff --git a/src/images/members/23.jpg b/src/images/members/23.jpg
new file mode 100644
index 00000000..f4a18be9
Binary files /dev/null and b/src/images/members/23.jpg differ
diff --git a/src/images/members/24.jpg b/src/images/members/24.jpg
new file mode 100644
index 00000000..590c5dbe
Binary files /dev/null and b/src/images/members/24.jpg differ
diff --git a/src/images/members/25.jpg b/src/images/members/25.jpg
new file mode 100644
index 00000000..9146dbe7
Binary files /dev/null and b/src/images/members/25.jpg differ
diff --git a/src/images/members/26.jpg b/src/images/members/26.jpg
new file mode 100644
index 00000000..ce819a34
Binary files /dev/null and b/src/images/members/26.jpg differ
diff --git a/src/images/members/28.jpg b/src/images/members/28.jpg
new file mode 100644
index 00000000..d4318cf9
Binary files /dev/null and b/src/images/members/28.jpg differ
diff --git a/src/images/members/29.jpg b/src/images/members/29.jpg
new file mode 100644
index 00000000..6ac95770
Binary files /dev/null and b/src/images/members/29.jpg differ
diff --git a/src/images/members/3.jpg b/src/images/members/3.jpg
new file mode 100644
index 00000000..b273ec5a
Binary files /dev/null and b/src/images/members/3.jpg differ
diff --git a/src/images/members/30.jpg b/src/images/members/30.jpg
new file mode 100644
index 00000000..803875a5
Binary files /dev/null and b/src/images/members/30.jpg differ
diff --git a/src/images/members/35.jpg b/src/images/members/35.jpg
new file mode 100644
index 00000000..281483ae
Binary files /dev/null and b/src/images/members/35.jpg differ
diff --git a/src/images/members/36.jpg b/src/images/members/36.jpg
new file mode 100644
index 00000000..2cb353f3
Binary files /dev/null and b/src/images/members/36.jpg differ
diff --git a/src/images/members/37.jpg b/src/images/members/37.jpg
new file mode 100644
index 00000000..4e728db0
Binary files /dev/null and b/src/images/members/37.jpg differ
diff --git a/src/images/members/38.jpg b/src/images/members/38.jpg
new file mode 100644
index 00000000..06ea9605
Binary files /dev/null and b/src/images/members/38.jpg differ
diff --git a/src/images/members/39.jpg b/src/images/members/39.jpg
new file mode 100644
index 00000000..162286df
Binary files /dev/null and b/src/images/members/39.jpg differ
diff --git a/src/images/members/4.jpg b/src/images/members/4.jpg
new file mode 100644
index 00000000..e169d89b
Binary files /dev/null and b/src/images/members/4.jpg differ
diff --git a/src/images/members/42.jpg b/src/images/members/42.jpg
new file mode 100644
index 00000000..2f4cdf96
Binary files /dev/null and b/src/images/members/42.jpg differ
diff --git a/src/images/members/43.jpg b/src/images/members/43.jpg
new file mode 100644
index 00000000..b0bd5480
Binary files /dev/null and b/src/images/members/43.jpg differ
diff --git a/src/images/members/45.jpg b/src/images/members/45.jpg
new file mode 100644
index 00000000..b3215adf
Binary files /dev/null and b/src/images/members/45.jpg differ
diff --git a/src/images/members/46.jpg b/src/images/members/46.jpg
new file mode 100644
index 00000000..22f29436
Binary files /dev/null and b/src/images/members/46.jpg differ
diff --git a/src/images/members/47.jpg b/src/images/members/47.jpg
new file mode 100644
index 00000000..6a351084
Binary files /dev/null and b/src/images/members/47.jpg differ
diff --git a/src/images/members/48.jpg b/src/images/members/48.jpg
new file mode 100644
index 00000000..e55e5720
Binary files /dev/null and b/src/images/members/48.jpg differ
diff --git a/src/images/members/49.jpg b/src/images/members/49.jpg
new file mode 100644
index 00000000..cd90cfb1
Binary files /dev/null and b/src/images/members/49.jpg differ
diff --git a/src/images/members/alejandro_garza.jpg b/src/images/members/5.jpg
similarity index 100%
rename from src/images/members/alejandro_garza.jpg
rename to src/images/members/5.jpg
diff --git a/src/images/members/51.jpg b/src/images/members/51.jpg
new file mode 100644
index 00000000..75e80bc2
Binary files /dev/null and b/src/images/members/51.jpg differ
diff --git a/src/images/members/53.jpg b/src/images/members/53.jpg
new file mode 100644
index 00000000..54ea6cc1
Binary files /dev/null and b/src/images/members/53.jpg differ
diff --git a/src/images/members/54.jpg b/src/images/members/54.jpg
new file mode 100644
index 00000000..ecc9f231
Binary files /dev/null and b/src/images/members/54.jpg differ
diff --git a/src/images/members/56.jpg b/src/images/members/56.jpg
new file mode 100644
index 00000000..9c84dfb7
Binary files /dev/null and b/src/images/members/56.jpg differ
diff --git a/src/images/members/57.jpg b/src/images/members/57.jpg
new file mode 100644
index 00000000..bec4720e
Binary files /dev/null and b/src/images/members/57.jpg differ
diff --git a/src/images/members/58.jpg b/src/images/members/58.jpg
new file mode 100644
index 00000000..0c7498ce
Binary files /dev/null and b/src/images/members/58.jpg differ
diff --git a/src/images/members/59.jpg b/src/images/members/59.jpg
new file mode 100644
index 00000000..ed43abaf
Binary files /dev/null and b/src/images/members/59.jpg differ
diff --git a/src/images/members/6.jpg b/src/images/members/6.jpg
new file mode 100644
index 00000000..187f24fe
Binary files /dev/null and b/src/images/members/6.jpg differ
diff --git a/src/images/members/60.jpg b/src/images/members/60.jpg
new file mode 100644
index 00000000..830fb1cb
Binary files /dev/null and b/src/images/members/60.jpg differ
diff --git a/src/images/members/61.jpg b/src/images/members/61.jpg
new file mode 100644
index 00000000..fd03f465
Binary files /dev/null and b/src/images/members/61.jpg differ
diff --git a/src/images/members/62.jpg b/src/images/members/62.jpg
new file mode 100644
index 00000000..fa912567
Binary files /dev/null and b/src/images/members/62.jpg differ
diff --git a/src/images/members/63.jpg b/src/images/members/63.jpg
new file mode 100644
index 00000000..7e262743
Binary files /dev/null and b/src/images/members/63.jpg differ
diff --git a/src/images/members/64.jpg b/src/images/members/64.jpg
new file mode 100644
index 00000000..3b122276
Binary files /dev/null and b/src/images/members/64.jpg differ
diff --git a/src/images/members/65.jpg b/src/images/members/65.jpg
new file mode 100644
index 00000000..bf1365c6
Binary files /dev/null and b/src/images/members/65.jpg differ
diff --git a/src/images/members/7.jpg b/src/images/members/7.jpg
new file mode 100644
index 00000000..5607a4f3
Binary files /dev/null and b/src/images/members/7.jpg differ
diff --git a/src/images/members/clara_gutierrez.jpg b/src/images/members/8.jpg
similarity index 100%
rename from src/images/members/clara_gutierrez.jpg
rename to src/images/members/8.jpg
diff --git a/src/images/members/9.jpg b/src/images/members/9.jpg
new file mode 100644
index 00000000..6557202c
Binary files /dev/null and b/src/images/members/9.jpg differ
diff --git a/src/images/members/alberto_jahuey.jpg b/src/images/members/alberto_jahuey.jpg
deleted file mode 100644
index 33450720..00000000
Binary files a/src/images/members/alberto_jahuey.jpg and /dev/null differ
diff --git a/src/images/members/alexis_virgen.jpg b/src/images/members/alexis_virgen.jpg
deleted file mode 100644
index 2c887e51..00000000
Binary files a/src/images/members/alexis_virgen.jpg and /dev/null differ
diff --git a/src/images/members/antonio_rodriguez.jpg b/src/images/members/antonio_rodriguez.jpg
deleted file mode 100644
index 244a9665..00000000
Binary files a/src/images/members/antonio_rodriguez.jpg and /dev/null differ
diff --git a/src/images/members/aurora_tijerina.jpg b/src/images/members/aurora_tijerina.jpg
deleted file mode 100644
index e7c37f07..00000000
Binary files a/src/images/members/aurora_tijerina.jpg and /dev/null differ
diff --git a/src/images/members/eduardo_sanchez.jpg b/src/images/members/eduardo_sanchez.jpg
deleted file mode 100644
index c2eab963..00000000
Binary files a/src/images/members/eduardo_sanchez.jpg and /dev/null differ
diff --git a/src/images/members/eric_castillo.jpg b/src/images/members/eric_castillo.jpg
deleted file mode 100644
index 21e3d981..00000000
Binary files a/src/images/members/eric_castillo.jpg and /dev/null differ
diff --git a/src/images/members/ernesto_cervantes.jpg b/src/images/members/ernesto_cervantes.jpg
deleted file mode 100644
index 0b4cc336..00000000
Binary files a/src/images/members/ernesto_cervantes.jpg and /dev/null differ
diff --git a/src/images/members/gabriela_mi.jpg b/src/images/members/gabriela_mi.jpg
deleted file mode 100644
index ae4e60e1..00000000
Binary files a/src/images/members/gabriela_mi.jpg and /dev/null differ
diff --git a/src/images/members/greg_espinosa.jpg b/src/images/members/greg_espinosa.jpg
deleted file mode 100644
index ee847d3a..00000000
Binary files a/src/images/members/greg_espinosa.jpg and /dev/null differ
diff --git a/src/images/members/iqui_balam.jpg b/src/images/members/iqui_balam.jpg
deleted file mode 100644
index 7e2281b7..00000000
Binary files a/src/images/members/iqui_balam.jpg and /dev/null differ
diff --git a/src/images/members/ivan_sol.jpg b/src/images/members/ivan_sol.jpg
deleted file mode 100644
index 06094ac8..00000000
Binary files a/src/images/members/ivan_sol.jpg and /dev/null differ
diff --git a/src/images/members/jesus_anaya.jpg b/src/images/members/jesus_anaya.jpg
deleted file mode 100644
index b607f993..00000000
Binary files a/src/images/members/jesus_anaya.jpg and /dev/null differ
diff --git a/src/images/members/paul_vazquez.jpg b/src/images/members/paul_vazquez.jpg
deleted file mode 100644
index 10dc98f0..00000000
Binary files a/src/images/members/paul_vazquez.jpg and /dev/null differ
diff --git a/src/images/members/ricardo_osorio.jpg b/src/images/members/ricardo_osorio.jpg
deleted file mode 100644
index de2a40a6..00000000
Binary files a/src/images/members/ricardo_osorio.jpg and /dev/null differ
diff --git a/src/images/members/roberto_galindo.jpg b/src/images/members/roberto_galindo.jpg
deleted file mode 100644
index 86359016..00000000
Binary files a/src/images/members/roberto_galindo.jpg and /dev/null differ
diff --git a/src/images/members/yulisa_medina.jpg b/src/images/members/yulisa_medina.jpg
deleted file mode 100644
index d5e97de3..00000000
Binary files a/src/images/members/yulisa_medina.jpg and /dev/null differ
diff --git a/src/components/Members/MembersHeader/images/pattern.png b/src/images/pattern.png
similarity index 100%
rename from src/components/Members/MembersHeader/images/pattern.png
rename to src/images/pattern.png
diff --git a/src/images/small_logo.png b/src/images/small_logo.png
new file mode 100644
index 00000000..c902849b
Binary files /dev/null and b/src/images/small_logo.png differ
diff --git a/src/images/sponsors/cerrey.png b/src/images/sponsors/cerrey.png
new file mode 100644
index 00000000..da8617ab
Binary files /dev/null and b/src/images/sponsors/cerrey.png differ
diff --git a/src/images/sponsors/cerrey_white.png b/src/images/sponsors/cerrey_white.png
new file mode 100644
index 00000000..93003412
Binary files /dev/null and b/src/images/sponsors/cerrey_white.png differ
diff --git a/src/images/sponsors/itesm.png b/src/images/sponsors/itesm.png
new file mode 100644
index 00000000..b012348f
Binary files /dev/null and b/src/images/sponsors/itesm.png differ
diff --git a/src/images/sponsors/itesm_white.png b/src/images/sponsors/itesm_white.png
new file mode 100644
index 00000000..0309665c
Binary files /dev/null and b/src/images/sponsors/itesm_white.png differ
diff --git a/src/images/sponsors/kia.png b/src/images/sponsors/kia.png
new file mode 100644
index 00000000..9087d37a
Binary files /dev/null and b/src/images/sponsors/kia.png differ
diff --git a/src/images/sponsors/microsoft.png b/src/images/sponsors/microsoft.png
new file mode 100644
index 00000000..de721c6f
Binary files /dev/null and b/src/images/sponsors/microsoft.png differ
diff --git a/src/images/sponsors/microsoft_white.png b/src/images/sponsors/microsoft_white.png
new file mode 100644
index 00000000..d4a89831
Binary files /dev/null and b/src/images/sponsors/microsoft_white.png differ
diff --git a/src/images/sponsors/neitek.png b/src/images/sponsors/neitek.png
new file mode 100644
index 00000000..f5786f84
Binary files /dev/null and b/src/images/sponsors/neitek.png differ
diff --git a/src/images/sponsors/neitek_white.png b/src/images/sponsors/neitek_white.png
new file mode 100644
index 00000000..fa153b97
Binary files /dev/null and b/src/images/sponsors/neitek_white.png differ
diff --git a/src/images/sponsors/oneila.png b/src/images/sponsors/oneila.png
new file mode 100644
index 00000000..11c5586c
Binary files /dev/null and b/src/images/sponsors/oneila.png differ
diff --git a/src/images/sponsors/oneila_white.png b/src/images/sponsors/oneila_white.png
new file mode 100644
index 00000000..8bb47342
Binary files /dev/null and b/src/images/sponsors/oneila_white.png differ
diff --git a/src/images/sponsors/steren.png b/src/images/sponsors/steren.png
new file mode 100644
index 00000000..8a4f859b
Binary files /dev/null and b/src/images/sponsors/steren.png differ
diff --git a/src/images/sponsors_background.jpg b/src/images/sponsors_background.jpg
new file mode 100644
index 00000000..8548a077
Binary files /dev/null and b/src/images/sponsors_background.jpg differ
diff --git a/src/images/team_2019.jpg b/src/images/team_2019.jpg
new file mode 100644
index 00000000..3aaf1d94
Binary files /dev/null and b/src/images/team_2019.jpg differ
diff --git a/src/index.css b/src/index.css
index 40721faf..22a9869b 100755
--- a/src/index.css
+++ b/src/index.css
@@ -1,24 +1,40 @@
html {
- height: 100%;
+ height: 100%;
+ scroll-behavior: smooth;
}
body {
margin: 0;
padding: 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
- "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
- sans-serif;
+ font-family: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
height: 100%;
}
code {
- font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
- monospace;
+ font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}
#root {
- height: 100%;
+ height: 100%;
padding-top: 48px;
-}
\ No newline at end of file
+}
+
+
+
+/* ----------------------------------------------------------------------------------- */
+/* App styles */
+/* ----------------------------------------------------------------------------------- */
+.app-container {
+ height: 100%;
+}
+
+.container-legend {
+ position: absolute;
+ top: 50%;
+ left: 15%;
+ right: 15%;
+ transform: translate(0%, -50%);
+ font-size: 5vw;
+}
diff --git a/src/index.js b/src/index.js
index 0e7d1d9a..2ae3e9c1 100755
--- a/src/index.js
+++ b/src/index.js
@@ -5,8 +5,8 @@ import App from './App';
import * as serviceWorker from './serviceWorker';
ReactDOM.render(
- ,
- document.getElementById('root')
+ ,
+ document.getElementById('root')
);
// If you want your app to work offline and load faster, you can change
diff --git a/yarn.lock b/yarn.lock
index aff6f1ea..45a27c05 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -729,6 +729,13 @@
dependencies:
regenerator-runtime "^0.12.0"
+"@babel/runtime@^7.4.4":
+ version "7.8.7"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.7.tgz#8fefce9802db54881ba59f90bb28719b4996324d"
+ integrity sha512-+AATMUFppJDw6aiR5NVPHqIQBlV/Pj8wY/EZH+lmvRdUo9xBaz/rF3alAwFJQavvKfeOlPE7oaaDHVbcySbCsg==
+ dependencies:
+ regenerator-runtime "^0.13.4"
+
"@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2":
version "7.2.2"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907"
@@ -827,13 +834,12 @@
recompose "0.28.0 - 0.30.0"
warning "^4.0.1"
-"@material-ui/icons@^3.0.2":
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/@material-ui/icons/-/icons-3.0.2.tgz#d67a6dd1ec8312d3a88ec97944a63daeef24fe10"
- integrity sha512-QY/3gJnObZQ3O/e6WjH+0ah2M3MOgLOzCy8HTUoUx9B6dDrS18vP7Ycw3qrDEKlB6q1KNxy6CZHm5FCauWGy2g==
+"@material-ui/icons@^4.9.1":
+ version "4.9.1"
+ resolved "https://registry.yarnpkg.com/@material-ui/icons/-/icons-4.9.1.tgz#fdeadf8cb3d89208945b33dbc50c7c616d0bd665"
+ integrity sha512-GBitL3oBWO0hzBhvA9KxqcowRUsA0qzwKkURyC8nppnC3fw54KPKZ+d4V1Eeg/UnDRSzDaI9nGCdel/eh9AQMg==
dependencies:
- "@babel/runtime" "^7.2.0"
- recompose "0.28.0 - 0.30.0"
+ "@babel/runtime" "^7.4.4"
"@material-ui/system@^3.0.0-alpha.0":
version "3.0.0-alpha.2"
@@ -1246,9 +1252,9 @@ acorn-walk@^6.0.1:
integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw==
acorn@^5.0.0, acorn@^5.5.3, acorn@^5.6.2:
- version "5.7.3"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
- integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
+ version "5.7.4"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e"
+ integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==
acorn@^6.0.1, acorn@^6.0.2:
version "6.1.0"
@@ -1927,6 +1933,11 @@ bootstrap@^4.3.1:
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.3.1.tgz#280ca8f610504d99d7b6b4bfc4b68cec601704ac"
integrity sha512-rXqOmH1VilAt2DyPzluTi2blhk17bO7ef+zLLPlWvG494pDxcM234pJ8wTc/6R40UWizAIIMgxjvxZg5kmsbag==
+bowser@^1.0.0:
+ version "1.9.4"
+ resolved "https://registry.yarnpkg.com/bowser/-/bowser-1.9.4.tgz#890c58a2813a9d3243704334fa81b96a5c150c9a"
+ integrity sha512-9IdMmj2KjigRq6oWhmwv1W36pDuA4STQZ8q6YO9um+x07xgYNCD3Oou+WP/3L1HNz7iqythGet3/p4wvc8AAwQ==
+
brace-expansion@^1.1.7:
version "1.1.11"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
@@ -2081,6 +2092,14 @@ buffer@^4.3.0:
ieee754 "^1.1.4"
isarray "^1.0.0"
+buffer@^5.0.2:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6"
+ integrity sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==
+ dependencies:
+ base64-js "^1.0.2"
+ ieee754 "^1.1.4"
+
builtin-status-codes@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
@@ -2309,7 +2328,7 @@ class-utils@^0.3.5:
isobject "^3.0.0"
static-extend "^0.1.1"
-classnames@^2.2.5, classnames@^2.2.6:
+classnames@^2.1.2, classnames@^2.2.5, classnames@^2.2.6:
version "2.2.6"
resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==
@@ -2467,6 +2486,11 @@ commander@^2.11.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==
+commander@^2.19.0:
+ version "2.20.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
+ integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
+
commander@~2.20.3:
version "2.20.3"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
@@ -2724,6 +2748,18 @@ css-blank-pseudo@^0.1.4:
dependencies:
postcss "^7.0.5"
+css-color-list@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/css-color-list/-/css-color-list-0.0.1.tgz#8718e8695ae7a2cc8787be8715f1c008a7f28b15"
+ integrity sha1-hxjoaVrnosyHh76HFfHACKfyixU=
+ dependencies:
+ css-color-names "0.0.1"
+
+css-color-names@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.1.tgz#5d0548fa256456ede4a9a0c2ac7ab19d3eb1ad81"
+ integrity sha1-XQVI+iVkVu3kqaDCrHqxnT6xrYE=
+
css-color-names@0.0.4, css-color-names@^0.0.4:
version "0.0.4"
resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
@@ -2804,6 +2840,15 @@ css-selector-tokenizer@^0.7.0:
fastparse "^1.1.1"
regexpu-core "^1.0.0"
+css-to-react-native@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-1.0.6.tgz#728c7e774e56536558a0ecaa990d9507c43a4ac4"
+ integrity sha1-cox+d05WU2VYoOyqmQ2VB8Q6SsQ=
+ dependencies:
+ css-color-list "0.0.1"
+ fbjs "^0.8.5"
+ nearley "^2.7.7"
+
css-tree@1.0.0-alpha.28:
version "1.0.0-alpha.28"
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f"
@@ -3186,6 +3231,11 @@ dir-glob@2.0.0:
arrify "^1.0.1"
path-type "^3.0.0"
+discontinuous-range@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a"
+ integrity sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=
+
dns-equal@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
@@ -3564,13 +3614,13 @@ eslint-scope@^4.0.0:
estraverse "^4.1.1"
eslint-utils@^1.3.1:
- version "1.4.2"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab"
- integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==
+ version "1.4.3"
+ resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f"
+ integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
dependencies:
- eslint-visitor-keys "^1.0.0"
+ eslint-visitor-keys "^1.1.0"
-eslint-visitor-keys@^1.0.0:
+eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
@@ -3930,7 +3980,7 @@ fb-watchman@^2.0.0:
dependencies:
bser "^2.0.0"
-fbjs@^0.8.0, fbjs@^0.8.1:
+fbjs@^0.8.0, fbjs@^0.8.1, fbjs@^0.8.5, fbjs@^0.8.7:
version "0.8.17"
resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd"
integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=
@@ -4407,9 +4457,9 @@ handle-thing@^2.0.0:
integrity sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==
handlebars@^4.0.3:
- version "4.5.3"
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.5.3.tgz#5cf75bd8714f7605713511a56be7c349becb0482"
- integrity sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA==
+ version "4.7.3"
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.3.tgz#8ece2797826886cf8082d1726ff21d2a022550ee"
+ integrity sha512-SRGwSYuNfx8DwHD/6InAPzD6RgeruWLT+B8e8a7gGs8FWgHzlExpTFMEq2IA6QpAfOClpKHy6+8IqTjeBCu6Kg==
dependencies:
neo-async "^2.6.0"
optimist "^0.6.1"
@@ -4738,7 +4788,7 @@ humps@^2.0.1:
resolved "https://registry.yarnpkg.com/humps/-/humps-2.0.1.tgz#dd02ea6081bd0568dc5d073184463957ba9ef9aa"
integrity sha1-3QLqYIG9BWjcXQcxhEY5V7qe+ao=
-hyphenate-style-name@^1.0.2:
+hyphenate-style-name@^1.0.1, hyphenate-style-name@^1.0.2:
version "1.0.3"
resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.3.tgz#097bb7fa0b8f1a9cf0bd5c734cf95899981a9b48"
integrity sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==
@@ -4899,6 +4949,14 @@ ini@^1.3.5, ini@~1.3.0:
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
+inline-style-prefixer@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-2.0.5.tgz#c153c7e88fd84fef5c602e95a8168b2770671fe7"
+ integrity sha1-wVPH6I/YT+9cYC6VqBaLJ3BnH+c=
+ dependencies:
+ bowser "^1.0.0"
+ hyphenate-style-name "^1.0.1"
+
inquirer@6.2.1:
version "6.2.1"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.1.tgz#9943fc4882161bdb0b0c9276769c75b32dbfcd52"
@@ -5147,6 +5205,11 @@ is-fullwidth-code-point@^2.0.0:
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
+is-function@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5"
+ integrity sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=
+
is-generator-fn@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
@@ -6169,6 +6232,11 @@ lodash.templatesettings@^4.0.0:
dependencies:
lodash._reinterpolate "^3.0.0"
+lodash.toarray@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561"
+ integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE=
+
lodash.uniq@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
@@ -6501,6 +6569,11 @@ mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@
dependencies:
minimist "0.0.8"
+moo@^0.4.3:
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/moo/-/moo-0.4.3.tgz#3f847a26f31cf625a956a87f2b10fbc013bfd10e"
+ integrity sha512-gFD2xGCl8YFgGHsqJ9NKRVdwlioeW3mI1iqfLNYQOv0+6JRwG58Zk9DIGQgyIaffSYaO1xsKnMaYzzNr1KyIAw==
+
move-concurrently@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
@@ -6546,6 +6619,11 @@ nan@^2.9.2:
resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552"
integrity sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==
+nanoid@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-2.0.1.tgz#deb55cac196e3f138071911dabbc3726eb048864"
+ integrity sha512-k1u2uemjIGsn25zmujKnotgniC/gxQ9sdegdezeDiKdkDW56THUMqlz3urndKCXJxA6yPzSZbXx/QCMe/pxqsA==
+
nanomatch@^1.2.9:
version "1.2.13"
resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
@@ -6568,6 +6646,17 @@ natural-compare@^1.4.0:
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
+nearley@^2.7.7:
+ version "2.16.0"
+ resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.16.0.tgz#77c297d041941d268290ec84b739d0ee297e83a7"
+ integrity sha512-Tr9XD3Vt/EujXbZBv6UAHYoLUSMQAxSsTnm9K3koXzjzNWY195NqALeyrzLZBKzAkL3gl92BcSogqrHjD8QuUg==
+ dependencies:
+ commander "^2.19.0"
+ moo "^0.4.3"
+ railroad-diagrams "^1.0.0"
+ randexp "0.4.6"
+ semver "^5.4.1"
+
needle@^2.2.1:
version "2.2.4"
resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e"
@@ -8016,7 +8105,7 @@ prop-types-extra@^1.1.0:
react-is "^16.3.2"
warning "^3.0.0"
-prop-types@^15.5.10, prop-types@^15.5.6, prop-types@^15.6.0, prop-types@^15.6.1:
+prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.6, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.7.2:
version "15.7.2"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
@@ -8140,13 +8229,26 @@ querystringify@^2.0.0:
resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.0.tgz#7ded8dfbf7879dcc60d0a644ac6754b283ad17ef"
integrity sha512-sluvZZ1YiTLD5jsqZcDmFyV2EwToyXZBfpoVOmktMmW+VEnhgakFHnasVph65fOjGPTWN0Nw3+XQaSeMayr0kg==
-raf@3.4.1:
+raf@3.4.1, raf@^3.4.0:
version "3.4.1"
resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
dependencies:
performance-now "^2.1.0"
+railroad-diagrams@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e"
+ integrity sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=
+
+randexp@0.4.6:
+ version "0.4.6"
+ resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3"
+ integrity sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==
+ dependencies:
+ discontinuous-range "1.0.0"
+ ret "~0.1.10"
+
randomatic@^3.0.0:
version "3.1.1"
resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed"
@@ -8343,6 +8445,15 @@ react-prop-types@^0.4.0:
dependencies:
warning "^3.0.0"
+react-rotating-text@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/react-rotating-text/-/react-rotating-text-1.3.1.tgz#0f7f2b9e61bf3d07c60696e6503627daab3dfec3"
+ integrity sha512-SUu+qg1XzfW4USLMxOJu5H6OBKBVbdeUpz837wKlUcaaxur4W5WuuWgt138wKTjlgqvv6zypKuj3d7RiCQ7cew==
+ dependencies:
+ classnames "^2.1.2"
+ lodash.toarray "^4.4.0"
+ prop-types "^15.5.10"
+
react-router-dom@^4.3.1:
version "4.3.1"
resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-4.3.1.tgz#4c2619fc24c4fa87c9fd18f4fb4a43fe63fbd5c6"
@@ -8422,6 +8533,13 @@ react-scripts@^2.1.8:
optionalDependencies:
fsevents "1.2.4"
+react-scroll-parallax@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/react-scroll-parallax/-/react-scroll-parallax-2.1.2.tgz#71d061a37e225125d929b07d629cbced9be1849a"
+ integrity sha512-Sv2/3etQGgpTQnJhb/nMLcTQhz4ILrB1fIIW853XlHyhD0YuGINk66HciW7B1N9zZpGX8sJY37QNoYit9PdTdQ==
+ dependencies:
+ prop-types "^15.5.10"
+
react-transition-group@^1.2.0:
version "1.2.1"
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-1.2.1.tgz#e11f72b257f921b213229a774df46612346c7ca6"
@@ -8453,6 +8571,38 @@ react-transition-group@^2.5.1:
prop-types "^15.6.2"
react-lifecycles-compat "^3.0.4"
+react-typing-animation@^1.6.2:
+ version "1.6.2"
+ resolved "https://registry.yarnpkg.com/react-typing-animation/-/react-typing-animation-1.6.2.tgz#841a8a0cfeb45233a0f6ce460d0bff8fb925c258"
+ integrity sha512-dxe/Copl4eyBKXfrKEHLoQlCplPE8qRczVYfi5rl/dhr6dM51qwF0M4aMH87R4LqDD84Zpwj+uSNhsuc9nZ/wA==
+ dependencies:
+ raf "^3.4.0"
+ shortid "^2.2.8"
+ styled-components "^1.4.6"
+
+react-typist@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/react-typist/-/react-typist-2.0.5.tgz#9830395a73a03e6368e1392ecb98edaa3a648e44"
+ integrity sha512-iZCkeqeegO0TlkTMiH2JD1tvMtY9RrXkRylnAI6m8aCVAUUwNzoWTVF7CKLij6THeOMcUDCznLDDvNp55s+YZA==
+ dependencies:
+ prop-types "^15.5.10"
+
+react-vertical-timeline-component@^2.6.0:
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/react-vertical-timeline-component/-/react-vertical-timeline-component-2.6.2.tgz#320bcea8f5913bbf279449902e9a0d428197963f"
+ integrity sha512-4RX2BOYyxvFb4cXVUxNcMrLnktthRpz3kFvpwgtlPTBZYYLasj+qAxB9Y2x6No8fBqiactr1xU9BSuC2q6YNjg==
+ dependencies:
+ classnames "^2.2.6"
+ prop-types "^15.7.2"
+ react-visibility-sensor "^5.1.1"
+
+react-visibility-sensor@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/react-visibility-sensor/-/react-visibility-sensor-5.1.1.tgz#5238380960d3a0b2be0b7faddff38541e337f5a9"
+ integrity sha512-cTUHqIK+zDYpeK19rzW6zF9YfT4486TIgizZW53wEZ+/GPBbK7cNS0EHyJVyHYacwFEvvHLEKfgJndbemWhB/w==
+ dependencies:
+ prop-types "^15.7.2"
+
react@^16.8.2:
version "16.8.3"
resolved "https://registry.yarnpkg.com/react/-/react-16.8.3.tgz#c6f988a2ce895375de216edcfaedd6b9a76451d9"
@@ -8586,6 +8736,11 @@ regenerator-runtime@^0.12.0:
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de"
integrity sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==
+regenerator-runtime@^0.13.4:
+ version "0.13.5"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
+ integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
+
regenerator-transform@^0.13.3:
version "0.13.3"
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb"
@@ -9112,6 +9267,13 @@ shellwords@^0.1.1:
resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
+shortid@^2.2.8:
+ version "2.2.14"
+ resolved "https://registry.yarnpkg.com/shortid/-/shortid-2.2.14.tgz#80db6aafcbc3e3a46850b3c88d39e051b84c8d18"
+ integrity sha512-4UnZgr9gDdA1kaKj/38IiudfC3KHKhDc1zi/HSxd9FQDR0VLwH3/y79tZJLsVYPsJgIjeHjqIWaWVRJUj9qZOQ==
+ dependencies:
+ nanoid "^2.0.0"
+
signal-exit@^3.0.0, signal-exit@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
@@ -9520,6 +9682,20 @@ style-loader@0.23.1:
loader-utils "^1.1.0"
schema-utils "^1.0.0"
+styled-components@^1.4.6:
+ version "1.4.6"
+ resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-1.4.6.tgz#58f32e8a6ab510fb1481e901e838e0477f148b06"
+ integrity sha1-WPMuimq1EPsUgekB6DjgR38UiwY=
+ dependencies:
+ buffer "^5.0.2"
+ css-to-react-native "^1.0.6"
+ fbjs "^0.8.7"
+ inline-style-prefixer "^2.0.5"
+ is-function "^1.0.1"
+ is-plain-object "^2.0.1"
+ prop-types "^15.5.4"
+ supports-color "^3.1.2"
+
stylehacks@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.1.tgz#3186595d047ab0df813d213e51c8b94e0b9010f2"
@@ -9874,9 +10050,9 @@ uglify-js@3.4.x:
source-map "~0.6.1"
uglify-js@^3.1.4:
- version "3.7.3"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.3.tgz#f918fce9182f466d5140f24bb0ff35c2d32dcc6a"
- integrity sha512-7tINm46/3puUA4hCkKYo4Xdts+JDaVC9ZPRcG8Xw9R4nhO/gZgUM3TENq8IF4Vatk8qCig4MzP/c8G4u2BkVQg==
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.8.0.tgz#f3541ae97b2f048d7e7e3aa4f39fd8a1f5d7a805"
+ integrity sha512-ugNSTT8ierCsDHso2jkBHXYrU8Y5/fY2ZUprfrJUiD7YpuFvV4jODLFmb3h4btQjqr5Nh4TX4XtgDfCU1WdioQ==
dependencies:
commander "~2.20.3"
source-map "~0.6.1"