Skip to content

Commit

Permalink
Agregar solucion para errores en UI
Browse files Browse the repository at this point in the history
  • Loading branch information
arendondiosa committed May 19, 2024
1 parent 0715ea4 commit ed9a450
Show file tree
Hide file tree
Showing 12 changed files with 103 additions and 341 deletions.
Binary file modified public/images/speaker/ana-lopez.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/speaker/carlos-castaneda.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/speaker/elizabeth-fuentes.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/speaker/felipe-granda.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/speaker/jose-alcocer.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/speaker/luis-mahecha.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/speaker/mauricio-repetto.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/[lang]/talks/components/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Card = ({ talkData, index, lang, langMapping }) => {

return (
<Link
key={`${talkData.id}-${speaker.id}`}
key={`${talkData.id}-${speakerData.id}`}
href={`/${lang}/${speakerData.type}s/${speakerData.id}`}>
<Image
className={`img-keynote img-speaker-talk ${colorBorderSpeaker[(index + 1) % colorBorderSpeaker.length]}`}
Expand Down
2 changes: 1 addition & 1 deletion src/app/[lang]/talks/components/Talks.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const Talks = ({ lang, talksList, defaultTag, allTags }) => {
return (
<section id="keynotes">
<div className="keynotes-bg">
<Title content={i18nDictionary?.sections?.talks} />
<Title content={i18nDictionary?.sections?.talks} counter={talks.length} />
<Container>
<Row className="justify-content-center">
<Col xs={12} md={4}>
Expand Down
6 changes: 4 additions & 2 deletions src/app/[lang]/talks/components/Title.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
import Col from 'react-bootstrap/Col';

const Title = ({ content }) => {
const Title = ({ content, counter }) => {
return (
<div className="welcome">
<div className="welcome-bg">
Expand All @@ -13,7 +13,9 @@ const Title = ({ content }) => {
<Col xs={10} md={6}>
<div className="title-container">
<h2 className="title">
<span className="bold">{content?.title}</span>
<span className="bold">
{content?.title} ({counter})
</span>
</h2>
</div>
</Col>
Expand Down
420 changes: 84 additions & 336 deletions src/data/talks.json

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion src/styles/partials/_talk.sass
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,25 @@
&.business-analytics
background-image: linear-gradient(to bottom right, #7986cb, #3949ab, #1a237e)
color: variables.$white
&.computer-vision
background-image: linear-gradient(to bottom right, #e1bee7, #ce93d8, #ba68c8)
color: variables.$third-text-color
&.devops
background-image: linear-gradient(to bottom right, #e0f7fa, #b2ebf2, #80deea)
color: variables.$third-text-color
&.iot
background-image: linear-gradient(to bottom right, #eeeeff, #e0e0ff, #d0d0ff)
color: variables.$third-text-color
&.web
background-image: linear-gradient(to bottom right, #f9fbe7, #dce775, #cddc39)
color: variables.$third-text-color

.img-speaker-talk
max-width: 80px
max-height: 80px
width: auto
height: auto
margin: 10px 0
margin: 10px 2px 10px 2px

.border-pink
border: 10px solid variables.$border-pink
Expand Down

0 comments on commit ed9a450

Please sign in to comment.