From fec82e9e6123b457ef197fc8722c7438e6309331 Mon Sep 17 00:00:00 2001 From: lauralog Date: Mon, 24 Jun 2024 15:26:19 +0200 Subject: [PATCH] team and research update --- app/globals.sass | 4 +- app/research/page.js | 2 +- app/sass/lib/_mixins.sass | 6 +- app/sass/lib/_type.sass | 1 + app/sass/partials/_publications.sass | 69 ++++------ app/sass/partials/_team.sass | 10 +- app/team/page.js | 4 +- constants/team.js | 184 ++++++++++++++++----------- public/assets/img/team/avatar.png | Bin 0 -> 2011 bytes tailwind.config.js | 4 +- 10 files changed, 146 insertions(+), 138 deletions(-) create mode 100644 public/assets/img/team/avatar.png diff --git a/app/globals.sass b/app/globals.sass index 95f22f4..2a390cf 100644 --- a/app/globals.sass +++ b/app/globals.sass @@ -12,8 +12,8 @@ @tailwind components @tailwind utilities -* - @apply border-2 border-red-300 +// * +// @apply border-2 border-red-300 :root diff --git a/app/research/page.js b/app/research/page.js index dfd9863..cbd02fd 100644 --- a/app/research/page.js +++ b/app/research/page.js @@ -106,7 +106,7 @@ export default function Research() { papersFiltered instanceof Array ? papersFiltered.length : 0 } /> -
+
{papersFiltered .slice(0, papersToShow) .map(({ date, doi, author, title, journal }, ind) => { diff --git a/app/sass/lib/_mixins.sass b/app/sass/lib/_mixins.sass index f2be3dc..9e63c24 100644 --- a/app/sass/lib/_mixins.sass +++ b/app/sass/lib/_mixins.sass @@ -25,7 +25,11 @@ -moz-box-shadow: 0px 10px 13px -7px rgba(0,0,0,0.08) box-shadow: 0px 10px 13px -7px rgba(0,0,0,0.08) - +//IMAGES +@mixin img_cover() + @apply overflow-hidden + img + @apply h-full w-full object-cover //NAVEGACIÓN diff --git a/app/sass/lib/_type.sass b/app/sass/lib/_type.sass index 1917c7f..584a48f 100644 --- a/app/sass/lib/_type.sass +++ b/app/sass/lib/_type.sass @@ -28,6 +28,7 @@ $regular: 400 $semibold: 600 $bold: 800 + h1 @media screen and (min-width: 150px) font-family: $main_font, sans-serif diff --git a/app/sass/partials/_publications.sass b/app/sass/partials/_publications.sass index 3bb9dd9..d85a476 100644 --- a/app/sass/partials/_publications.sass +++ b/app/sass/partials/_publications.sass @@ -3,10 +3,10 @@ // Correcciones: código duplicado para select e input. // Recomendado hacer mixins + @media (min-width: 150px) .research - display: flex - flex-direction: column + @apply flex flex-col flex: 1 .filters @@ -15,11 +15,6 @@ display: flex flex-direction: column align-items: start - - // .main - // min-height: calc(100vh - 150px) - // padding: 5rem 0 0 0 - // background-color: red .research_results display: flex @@ -60,7 +55,7 @@ border-bottom: solid 1px $ca-blue-200 justify-content: left .filter - margin: 0 0.8rem 0.8rem 0 + margin: 0 0.5rem width: 100% text-align: right label @@ -77,22 +72,17 @@ .papers - display: flex - - padding-left: 0px + @apply grid md:grid-cols-2 gap-8 .paper - + @apply h-full display: flex flex-direction: column border-bottom: $gray-300 1px solid .paper_main - display: flex - flex-direction: column - justify-content: space-between - - + @apply flex flex-col justify-between + .paper_date display: flex border-width: 4px @@ -104,10 +94,10 @@ // border-right: 3px solid red -webkit-border-image: -webkit-gradient(linear, 0% 0%, 0% 0%, from(rgba(152, 206, 9, 1)), to(rgba(152, 206, 0, 0))) 1 100% - p + .year // @include border-tag - @apply text-gray-400 px-4 - font-size: 2.5rem + @apply text-gray-400 pl-4 + font-size: 1.25rem font-weight: 400 display: block @@ -118,6 +108,7 @@ @apply text-ffdGreen-300 .paper_subtitle + font-family: 16px //padding-bottom: $spacing_md @apply text-gray-100 margin-bottom: $spacing_xsm @@ -126,19 +117,7 @@ .paper_link @include icon-button-right - @include link-button - // @include button - // display: flex - // flex-direction: row - // //gap: $spacing_xsm - // align-content: center - // justify-content: left - // margin-top: 0.6rem - // a - - // display: flex - // align-content: center - //margin-top: $spacing_sm + @include link-button @@ -149,7 +128,7 @@ display: flex flex-wrap: wrap gap: 4px - padding-bottom: $spacing_lg + padding-bottom: $spacing_sm border-bottom: solid 1px $ca-blue-100 justify-content: space-between .filter @@ -167,21 +146,15 @@ input width: 20.6rem .papers - display: flex - flex-direction: column - gap: $spacing_xsm - display: flex - flex-direction: column padding: $spacing_sm 0 $spacing_md 0 .paper - padding: $spacing_sm 0 $spacing_md 0 + @apply h-full + padding-bottom: $spacing_md .paper_main - display: flex - flex-direction: row - justify-content: left + @apply flex flex-row justify-start gap: $spacing_md .paper_date display: flex @@ -195,7 +168,7 @@ -webkit-border-image: -webkit-gradient(linear, 0% 0%, 0% 0%, from(rgba(152, 206, 9, 1)), to(rgba(152, 206, 0, 0))) 1 100% h5 - @include border-tag + // @include border-tag .paper_content width:100% @@ -212,8 +185,8 @@ font-weight: 600 .button_container - display: flex - justify-content: end + @apply mt-4 + @apply flex justify-end .paper_link @include button display: flex @@ -294,4 +267,6 @@ font-weight: 600 margin: 0 a - display: flex \ No newline at end of file + display: flex +.papers + diff --git a/app/sass/partials/_team.sass b/app/sass/partials/_team.sass index 193a735..b399575 100644 --- a/app/sass/partials/_team.sass +++ b/app/sass/partials/_team.sass @@ -1,8 +1,5 @@ -// * -// border: 1px solid salmon - .team - @apply text-white + @apply text-white font-main-font main .teammates @apply sm:grid grid-cols-2 lg:grid-cols-3 gap-8 justify-between @@ -23,9 +20,8 @@ .mate_img @apply max-h-[230px] - @apply overflow-hidden - img - @apply h-full w-full object-cover + @Iinclude img_cover() + .mate_info @apply py-8 px-6 diff --git a/app/team/page.js b/app/team/page.js index 7eb7439..9c32275 100644 --- a/app/team/page.js +++ b/app/team/page.js @@ -60,9 +60,9 @@ export default function Team(props) {
) : null} */} {/* mail */} -
+ {/*
{email} -
+
*/} {/* description */}
diff --git a/constants/team.js b/constants/team.js index f13c9d3..066a19c 100644 --- a/constants/team.js +++ b/constants/team.js @@ -5,10 +5,10 @@ export const myteam = { // las keys de uc3m empiezan por 14 { name: "José Alberto Hernández", - translationKey: "team.professorCards.roles.14", position: "IP1", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -16,10 +16,10 @@ export const myteam = { }, { name: "Alfonso Sánchez-Macián", - translationKey: "team.professorCards.roles.15", position: "IP2", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -27,10 +27,10 @@ export const myteam = { }, { name: "Ángel Cuevas", - translationKey: "team.professorCards.roles.16", position: "", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -38,10 +38,10 @@ export const myteam = { }, { name: "David Larrabeiti", - translationKey: "team.professorCards.roles.17", position: "", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -49,10 +49,10 @@ export const myteam = { }, { name: "Gabriel Otero", - translationKey: "team.professorCards.roles.18", position: "", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -60,10 +60,10 @@ export const myteam = { }, { name: "Jorge Pleite", - translationKey: "team.professorCards.roles.19", position: "", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -71,10 +71,10 @@ export const myteam = { }, { name: "Gonzalo Martínez", - translationKey: "team.professorCards.roles.20", position: "PhD candidate", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -82,10 +82,10 @@ export const myteam = { }, { name: "Roberto Boris Martinez", - translationKey: "team.professorCards.roles.21", position: "PhD candidate", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -93,10 +93,10 @@ export const myteam = { }, { name: "Francisco Caravaca", - translationKey: "team.professorCards.roles.22", position: "PhD candidate", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -104,10 +104,10 @@ export const myteam = { }, { name: "Juan Carlos Hernández", - translationKey: "team.professorCards.roles.23", position: "PhD candidate", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -115,10 +115,10 @@ export const myteam = { }, { name: "Angel Merino", - translationKey: "team.professorCards.roles.24", position: "PhD candidate", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -126,10 +126,10 @@ export const myteam = { }, { name: "Nataliia Koneva", - translationKey: "team.professorCards.roles.25", position: "PhD candidate", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -137,10 +137,10 @@ export const myteam = { }, { name: "PhD Student 1", - translationKey: "team.professorCards.roles.26", position: "PhD Student 1", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -148,10 +148,10 @@ export const myteam = { }, { name: "PhD Student 2", - translationKey: "team.professorCards.roles.27", position: "PhD Student 2", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -159,10 +159,10 @@ export const myteam = { }, { name: "Full-Time Technician 1", - translationKey: "team.professorCards.roles.28", position: "Full-Time Technician 1", + translationKey: "", // "description":"description", - photo: "/assets/img/team/juan-quemada.jpg", + photo: "/assets/img/team/avatar.jpg", // "github":"github", // "email": "mail", center: "UC3M", @@ -174,20 +174,32 @@ export const myteam = { title: "Associate Professors", members: [ { - name: "Juan Quemada", - translationKey: "team.professorCards.roles.1", - position: "", + name: "Pedro Reviriego", + position: "IP1", + translationKey: "team.professorCards.roles.2", description: - "Juan Quemada leads the Next Generation Internet Group within the Telematics Engineering Department, Universidad Politécnica de Madrid (UPM), where he is Full Professor. He is also the Telefonica Chair of UPM, for the next-generation Internet, and the UPM Representative at the World Wide Web Consortium. His research interests include collaborative and social application architecture for the Internet and the Web, including cloud computing, where he has a strong involvement in European and Spanish research.", - photo: "/assets/img/team/juan-quemada.jpg", - github: "https://github.com/jquemada", - email: "juan.quemada@upm.es", + "Pedro Reviriego received the M.Sc. and Ph.D. degrees in telecommunications engineering from the Technical University of Madrid, Madrid, Spain, in 1994 and 1997, respectively. From 1997 to 2000, he was an Engineer with Teldat, Madrid, working on router implementation. In 2000, he joined Massana to work on the development of 1000BASE-T transceivers. From 2004 to 2007, he was a Distinguished Member of Technical Staff with the LSI Corporation, working on the development of Ethernet transceivers. From 2007 to 2018 he was with Nebrija University, from 2018 to 2022 with Universidad Carlos III de Madrid. He is currently with Universidad Politécnica de Madrid working on probabilistic data structures, high speed packet processing and machine learning.", + photo: "/assets/img/team/PR.jpg", + email: "pedro.reviriego@upm.es", center: "E.T.S. de ingenieros de telecomunicacion", - key: "1", + key: "8", }, + // { + // name: "Juan Quemada", + // position: "", + // translationKey: "team.professorCards.roles.1", + // description: + // "Juan Quemada leads the Next Generation Internet Group within the Telematics Engineering Department, Universidad Politécnica de Madrid (UPM), where he is Full Professor. He is also the Telefonica Chair of UPM, for the next-generation Internet, and the UPM Representative at the World Wide Web Consortium. His research interests include collaborative and social application architecture for the Internet and the Web, including cloud computing, where he has a strong involvement in European and Spanish research.", + // photo: "/assets/img/team/juan-quemada.jpg", + // github: "https://github.com/jquemada", + // email: "juan.quemada@upm.es", + // center: "E.T.S. de ingenieros de telecomunicacion", + // key: "1", + // }, { name: "Enrique Barra", - position: "team.professorCards.positions.1", + // position: "team.professorCards.positions.1", + position: "IP2", translationKey: "team.professorCards.roles.2", description: "Enrique Barra is a professor at Telematic Engineering Department, School of Telecommunications Engineering. He received the Ph.D. degree in Telematic Engineering with minoring in Multimedia and Technology Enhanced Learning from Universidad Politécnica de Madrid (UPM).He has participated in many European projects, such as GLOBAL, FIWARE, and C@R. He is currently involved in several projects contributing to the generation and distribution of educational content in TEL environments. His research interests include videoconferencing, games in education, and social networks in education.", @@ -198,28 +210,27 @@ export const myteam = { key: "5", }, { - name: "Joaquín Salvachúa", - translationKey: "team.professorCards.roles.2", + name: "Álvaro Alonso", position: "", + translationKey: "team.professorCards.roles.2", description: - "Joaquín Salvachúa is a professor at UPM, where he received the M.Sc., Ph.D. in Telecommunications Engineering. He is also FIWARE Technical Steering Committee member elected as Remarkable individuals. His research interests include advanced cloud and edge architectures, big data infrastructure, data privacy and usage control, NoSql databases, applications, and identity in blockchain.", - photo: "/assets/img/team/joaquin-salvachua.jpg", - github: "https://github.com/jsalvachua", - email: "joaquin.salvachua@upm.es", + "Álvaro Alonso, Ph.D. in Telecommunications Engineering, Professor at the Telematic Systems Engineering Department, School of Telecommunications Engineering, is a WebHTML5 Videoconference and Cloud Computing expert.He is the author of several articles and participates in a lot of Spanish and European research projects. His research interests include multi-conferencing systems in cloud computing, security, and the IoT in the future Internet.", + photo: "/assets/img/team/alvaro-alonso.jpg", + github: "https://github.com/aalonsog", + email: "alvaro.alonso@upm.es", center: "E.T.S. de ingenieros de telecomunicacion", - key: "2", + key: "6", }, { - name: "Santiago Pavón", + name: "Aldo Gordillo", translationKey: "team.professorCards.roles.2", - position: "", description: - "Santiago Pavón Gómez obtained the B.S. and Ph.D. in Telecommunication Engineer from the Universidad Politécnica de Madrid (UPM) in 1987 and 1990 respectively. Santiago obtained the position of Assistant Professor in 1991 and the position of Associate Professor in 1992. He has published several articles and participated in national and international research projects related to Formal Description Techniques, CSCW, Tele-Education, collaboration services, IPv6, virtualization, identity services, safely (Cyspa) and Blockchain (BAPI).", - photo: "/assets/img/team/santiago-pavon.jpg", - github: "https://github.com/sanpago", - email: "santiago.pavon@upm.es", - center: "E.T.S. de ingenieros de telecomunicacion", - key: "3", + "Aldo Gordillo received the degree in Telecommunications Engineering and the PhD degree in Telematics Engineering from UPM, in 2012 and 2017, respectively. From 2012 to 2017, he was a Research and Development Engineer with the Telematics Engineering Department, UPM. He is currently an Assistant Professor with the Computer Science Department, also at UPM. His research interests include the field of technology-enhanced learning, with a special focus on creation, evaluation, and dissemination of e-learning resources, computer science education, game-based learning, and e-learning systems.", + photo: "/assets/img/team/aldo-gordillo.jpg", + github: "https://github.com/agordillo", + email: "a.gordillo@upm.es", + center: "E.T.S de ing. de sistemas informáticos", + key: "7", }, { name: "Gabriel Huecas", @@ -233,41 +244,33 @@ export const myteam = { center: "E.T.S. de ingenieros de telecomunicacion", key: "4", }, - { - name: "Álvaro Alonso", + name: "Joaquín Salvachúa", + position: "", translationKey: "team.professorCards.roles.2", description: - "Álvaro Alonso, Ph.D. in Telecommunications Engineering, Professor at the Telematic Systems Engineering Department, School of Telecommunications Engineering, is a WebHTML5 Videoconference and Cloud Computing expert.He is the author of several articles and participates in a lot of Spanish and European research projects. His research interests include multi-conferencing systems in cloud computing, security, and the IoT in the future Internet.", - photo: "/assets/img/team/alvaro-alonso.jpg", - github: "https://github.com/aalonsog", - email: "alvaro.alonso@upm.es", + "Joaquín Salvachúa is a professor at UPM, where he received the M.Sc., Ph.D. in Telecommunications Engineering. He is also FIWARE Technical Steering Committee member elected as Remarkable individuals. His research interests include advanced cloud and edge architectures, big data infrastructure, data privacy and usage control, NoSql databases, applications, and identity in blockchain.", + photo: "/assets/img/team/joaquin-salvachua.jpg", + github: "https://github.com/jsalvachua", + email: "joaquin.salvachua@upm.es", center: "E.T.S. de ingenieros de telecomunicacion", - key: "6", - }, - { - name: "Aldo Gordillo", - translationKey: "team.professorCards.roles.2", - description: - "Aldo Gordillo received the degree in Telecommunications Engineering and the PhD degree in Telematics Engineering from UPM, in 2012 and 2017, respectively. From 2012 to 2017, he was a Research and Development Engineer with the Telematics Engineering Department, UPM. He is currently an Assistant Professor with the Computer Science Department, also at UPM. His research interests include the field of technology-enhanced learning, with a special focus on creation, evaluation, and dissemination of e-learning resources, computer science education, game-based learning, and e-learning systems.", - photo: "/assets/img/team/aldo-gordillo.jpg", - github: "https://github.com/agordillo", - email: "a.gordillo@upm.es", - center: "E.T.S de ing. de sistemas informáticos", - key: "7", + key: "2", }, { - name: "Pedro Reviriego", + name: "Santiago Pavón", translationKey: "team.professorCards.roles.2", + position: "", description: - "Pedro Reviriego received the M.Sc. and Ph.D. degrees in telecommunications engineering from the Technical University of Madrid, Madrid, Spain, in 1994 and 1997, respectively. From 1997 to 2000, he was an Engineer with Teldat, Madrid, working on router implementation. In 2000, he joined Massana to work on the development of 1000BASE-T transceivers. From 2004 to 2007, he was a Distinguished Member of Technical Staff with the LSI Corporation, working on the development of Ethernet transceivers. From 2007 to 2018 he was with Nebrija University, from 2018 to 2022 with Universidad Carlos III de Madrid. He is currently with Universidad Politécnica de Madrid working on probabilistic data structures, high speed packet processing and machine learning.", - photo: "/assets/img/team/PR.jpg", - email: "pedro.reviriego@upm.es", + "Santiago Pavón Gómez obtained the B.S. and Ph.D. in Telecommunication Engineer from the Universidad Politécnica de Madrid (UPM) in 1987 and 1990 respectively. Santiago obtained the position of Assistant Professor in 1991 and the position of Associate Professor in 1992. He has published several articles and participated in national and international research projects related to Formal Description Techniques, CSCW, Tele-Education, collaboration services, IPv6, virtualization, identity services, safely (Cyspa) and Blockchain (BAPI).", + photo: "/assets/img/team/santiago-pavon.jpg", + github: "https://github.com/sanpago", + email: "santiago.pavon@upm.es", center: "E.T.S. de ingenieros de telecomunicacion", - key: "8", + key: "3", }, { name: "Jose Andres Muñoz", + position: "", translationKey: "team.professorCards.roles.3", description: "Andrés received the B.S. in Telematic Engineering from Escuela Superior Politécnica del Litoral (ESPOL) in 2013 He received the M.Sc. in Telematic Services and Network Engineering from Universidad Politécnica de Madrid (UPM). Andrés is currently a Ph.D. student in Telecommunications Engineering and a Researcher with the Next Generation Internet Research Group. His previous experience includes Telematic Laboratories Coordination or Servers and Communications Assistant, both in ESPOL.Andres has carried out different research projects, such as Web Platform Development for Control and Monitoring of Environmental Parameters in Agriculture or Kiswar Proyect Reactive Evacuation Management Systemsfor Emergency Situations.", @@ -279,6 +282,7 @@ export const myteam = { }, { name: "Alejandro Pozo", + position: "", translationKey: "team.professorCards.roles.3", description: "Researcher and Ph.D. student at Politécnica of Madrid (UPM). He received the M.Sc. in Telecommunications Engineering from the UPM, Spain, in 2017, where he is currently pursuing the Ph.D. in Telecommunications Engineering and is a Research Assistant with the Next Generation Internet Research Group. He participates in several European projects and publishes results in journals related to the Internet of Things, security, and identity management.", @@ -288,8 +292,21 @@ export const myteam = { center: "E.T.S. de ingenieros de telecomunicacion", key: "10", }, + { + name: "Anabel Pilicita", + position: "PhD Candidate", + translationKey: "", + description: + "", + photo: "/assets/img/team/avatar.jpg", + github: "", + email: "", + center: "E.T.S. de ingenieros de telecomunicacion", + key: "29", + }, { name: "Carlos Arriaga", + position: "PhD Candidate", translationKey: "team.professorCards.roles.4", description: " Carlos is a Ph.D. student in Telecommunication Engineering at Universidad Politécnica de Madrid (UPM). He received the B.S. and M.Sc. in Telecommunications Engineering from UPM in 2020 and 2022. His research interests lie in primarily in the field of video-conference scalability and WebRTC.", @@ -301,6 +318,7 @@ export const myteam = { }, { name: "Javier Conde", + position: "PhD Candidate", translationKey: "team.professorCards.roles.3", description: "PhD student in Telematics Engineering at UPM and researcher in the Department of Telematics Engineering. He received the B.S. and M.Sc. in Telecommunications Engineering from UPM in 2018 and 2020. His research interests lie in the fields of Open Linked Data, Digital Twins, Big Data and Machine Learning.", @@ -310,6 +328,18 @@ export const myteam = { center: "E.T.S. de ingenieros de telecomunicacion", key: "11", }, + { + name: "Carlos Aparicio", + position: "PhD Candidate", + translationKey: "", + description: + "", + photo: "/assets/img/team/avatar.jpg", + github: "", + email: "", + center: "E.T.S. de ingenieros de telecomunicacion", + key: "30", + }, ], }, }; diff --git a/public/assets/img/team/avatar.png b/public/assets/img/team/avatar.png new file mode 100644 index 0000000000000000000000000000000000000000..09892098aa943af5fe95e7dd434a07fe03e7ccd1 GIT binary patch literal 2011 zcmV<12PF83P)D!y%g4vZ*x1<2%*?Q`u)x5;+S=OH)zz}HvdGBD zw6wIs!oteR%FWHqrlzLJ$;r^r(7(UGt*x!9s;a}o!>FjJ#>U3Iy}i%R&$YF+x3{;h zuCCtR-nO>3udlDMv9Z$9(zv*|ySuyA*4EqG+ZlWNivR!y*-1n}RCr$O+*gj>NDPM2 zpNco<96RTn9rwSi8F&oCZFlz#Qq{xgJ4+x4LZrx&UjP6A00000000000000000000 z0000000000h)13Iv~gIg9X6)(&Ma2$kko6>k^LchuGJIe1?9VT%ih&$-<6da;(GtY zRygU`V`YKSGPJdX%aOK)>O)}bd#Gv~*uA$6-S28s*y-CA`a9YL;;WKvrF0c*ZKyul z)*h=`7wH^W2Elqsjqd}?Xz*Ptp%PkVVMQxo5?Bs`i9Upe<)onxU}?Eo>Ro7Cj@nv* ze0H1D=vvOYdIRQ`ySe^?YRPg}s_G9&F3o|+E;KJf72K|Qva4ddGB4O%8ki>o6?HI`i*6#+w#5|Y?<y|LwN+|wJ-DOs*c9lZ(lz;YDS^$r~880p|x z??Sy~IVsik0el`?F2Y>=KFtcZ1R zaGELyc&axa?H!NJ`jhg5v~%-y@6vvAx%c&^lgbGsy=v!Q)n20Y000000000000000 z0000001(G=0_9$3(l{U9f4Ydqf&CDSql-`X!}G?Z(<>_@q?M!EmqlnRgo`h=qe`mH zp^F!L#dKMP=0-j66q)X!m2_UKU< z?=gcl`PrjD-Z_UQ!Oo*l-Y$R@ac4on7M&O-j9L_~HG+QG8x@#l(9NwQst~Om6uTU# z#^D0B?jkA@-9e`x4^-yi2NWuOs^gbXXX{ZRZwp;qmr8Y=vc4+;?DuSiV=6Wdp+vB! zYWn~xgnKHt51~MOqTGjPD@PoaW3S(TV1qAdpLGPU;{}n+CNZ&z1&l zAk)yBhI<>K$Szko#25&!NK0f~qZEphQ8{ z3aIf)#a^Mvnrf|~$}^REhB95M)P*|TX3iCPq&kn#$aR|+5*6uFl|Ix;s7M0Ewp3#a z)kYpw@J3LsOsPOxLcOd<@p>5y2p=fiLkJUGpQ800tayqjR`dizEyTFw96Gb|` z!YX_?aV~Q~zz%VD}8+~-=U|TkA>Od+oZ}G}nbJRjS zi+DxREJj@nPrRDb5Owl07n$q)ia(q8)f$NXg*KhY?6EB-U9U5WqIxO65S z|C%@HT<{BxaK1b6FYI^o5WlAp7RhA6Kem`8MTkGt$mX+;7JpOgV>ZtqfL8IK*!Dm6 zzQ>>P{QXCNTMXj=+Nnb$0D%|)f;hy>mx(1hlm3f?BA8dZ4V=5bdfd6DDtbSk-BC3w tPksUb00000000000000000000fEW70#Mag`cL)Fg002ovPDHLkV1gNB=am2e literal 0 HcmV?d00001 diff --git a/tailwind.config.js b/tailwind.config.js index 4c5dc90..cb0184e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -12,8 +12,10 @@ module.exports = { "gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))", }, + fontFamily: { + 'main-font': ['"Archivo"'], + }, colors: { - primary: { DEFAULT: "#5441FF", blue: '#1C74D9',