Skip to content

Commit

Permalink
feat: add hour to speaker 2
Browse files Browse the repository at this point in the history
  • Loading branch information
saramontagud committed Sep 9, 2024
1 parent 8c4bce2 commit 70cf507
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions app/components/Schedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,6 @@ export const Schedule = () => {
Horarios y charlas
</h2>
<div className="flex flex-col gap-16">
<Talk
title="Top Tips para Deslumbrar en una Entrevista"
author="Serudda"
hour="xx.00h"
img="/imgs/speakers/speaker-1.png"
alt="speaker 1 image: serudda"
/>
<Talk
title="Primeros 6 Meses trabajando como Desarrolladora: Lecciones que No Esperaba"
author="Kao Lo"
hour="xx.00h"
img="/imgs/speakers/speaker-3.jpg"
alt="speaker 3 image: Kao Lo"
/>
<Talk
title="Construye tu primer LLM agente con python paso a paso"
author="Moises Ariza"
Expand All @@ -31,10 +17,24 @@ export const Schedule = () => {
<Talk
title="Easy Docker: Dockeriza tu Frontend y Deja Atrás a la Competencia"
author="Santiago/@ksreyr"
hour="xx.00h"
hour="20.30h"
img="/imgs/speakers/speaker-4.jpeg"
alt="speaker 4 image: Kevin Santiago Rey Rodriguez"
/>
<Talk
title="Primeros 6 Meses trabajando como Desarrolladora: Lecciones que No Esperaba"
author="Kao Lo"
hour="xx.00h"
img="/imgs/speakers/speaker-3.jpg"
alt="speaker 3 image: Kao Lo"
/>
<Talk
title="Top Tips para Deslumbrar en una Entrevista"
author="Serudda"
hour="xx.00h"
img="/imgs/speakers/speaker-1.png"
alt="speaker 1 image: serudda"
/>
<Talk
title="Mindset de Crecimiento para Programadores: Supera el Síndrome del Impostor y Aumenta tu Productividad"
author="Karol Neiza"
Expand Down
2 changes: 1 addition & 1 deletion app/components/common/Talk.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const Talk = ({ title, author, hour, img, alt }: TalkProps) => {
{author}
</p>
</footer>
<Tag>??.00h</Tag>
<Tag>{hour}</Tag>
</article>
);
};

0 comments on commit 70cf507

Please sign in to comment.