Skip to content

Commit

Permalink
Fix typo participants (#51)
Browse files Browse the repository at this point in the history
* Fix typo in participants

* Fix name speaker in schedule
  • Loading branch information
juanpablo-is authored Jul 21, 2023
1 parent cef27f8 commit a91f263
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/components/Participantes/Participantes.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ const participants: Participant[] = [
type: 2,
},
{
name: 'David Rodriguez - Xerosec',
name: 'David Rodríguez - Xerosec',
title: 'El camino menos transitado: Como llegué al sector IT a los 35 añazos',
img: 'https://www.tuasesordemoda.com/wp-content/uploads/2022/11/cortes-cara-cuadrada-mujer-.jpeg',
hora: '21:30 H',
type: 1,
},
{
name: 'Anais Fernandez Villar',
name: 'Anaís Fernández Villar',
title: 'Magicals Girls UI: Los secretos de la animacion en Figma',
img: 'https://www.tuasesordemoda.com/wp-content/uploads/2022/11/cortes-cara-cuadrada-mujer-.jpeg',
hora: '22:00 H',
Expand Down
6 changes: 3 additions & 3 deletions src/components/Schedule.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const items: typeItem[] = [
type: 'presentation',
url: '/imgs/JoseManuel.webp',
date: '2023-07-21T20:00:00+02:00',
speaker: 'Jose Manuel Ortega Falcón',
speaker: 'José Manuel Ortega Falcón',
},
{
name: 'Mi Experiencia como Desarrollador Junior en Latinoamérica: ¿Un Viaje hacia el Éxito?',
Expand All @@ -29,7 +29,7 @@ const items: typeItem[] = [
type: 'presentation',
url: '/imgs/Xero.webp',
date: '2023-07-21T21:30:00+02:00',
speaker: 'David Rodriguez - Xerosec',
speaker: 'David Rodríguez - Xerosec',
},
{
name: 'Magical girls UI: los secretos de la animación en Figma',
Expand All @@ -49,7 +49,7 @@ const items: typeItem[] = [
type: 'presentation',
url: '/imgs/Kuro.webp',
date: '2023-07-21T23:00:00+02:00',
speaker: 'David Huertos - Ikurotime',
speaker: 'David Huertas - Ikurotime',
},
]
---
Expand Down
4 changes: 2 additions & 2 deletions src/components/ScheduleItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function ScheduleItem({
className="w-[150px] h-[150px] rounded-full object-cover"
/>
)}
<div className="flex flex-col font-bold gap-4 text-2xl leading-8 mb-2">
<div className="flex flex-col-reverse md:flex-col font-bold gap-4 text-2xl leading-8 mb-2">
<div className="flex flex-col md:flex-row items-center gap-x-4">
<p
className={`md:max-w-[80%] ${
Expand All @@ -37,7 +37,7 @@ export default function ScheduleItem({
</p>
</div>
{type === 'presentation' && (
<p className="text-gray-500 font-semibold m-auto">
<p className="text-gray-500 font-semibold">
{speaker}
</p>
)}
Expand Down

0 comments on commit a91f263

Please sign in to comment.