Skip to content

Commit

Permalink
optimize image (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
MGarcia93 authored Jul 21, 2023
1 parent 2a9fd45 commit c4dad9c
Show file tree
Hide file tree
Showing 12 changed files with 7 additions and 7 deletions.
Binary file removed public/imgs/Anais.png
Binary file not shown.
Binary file added public/imgs/Anais.webp
Binary file not shown.
Binary file removed public/imgs/EdgarMejia.jpeg
Binary file not shown.
Binary file added public/imgs/EdgarMejia.webp
Binary file not shown.
Binary file removed public/imgs/JoseManuel.jpg
Binary file not shown.
Binary file added public/imgs/JoseManuel.webp
Binary file not shown.
Binary file removed public/imgs/Kuro.png
Binary file not shown.
Binary file added public/imgs/Kuro.webp
Binary file not shown.
Binary file removed public/imgs/Xero.jpg
Binary file not shown.
Binary file added public/imgs/Xero.webp
Binary file not shown.
10 changes: 5 additions & 5 deletions src/components/Schedule.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ const items: typeItem[] = [
{
name: 'De Junior a Líder',
type: 'presentation',
url: '/imgs/JoseManuel.jpg',
url: '/imgs/JoseManuel.webp',
date: '2023-07-21T20:00:00+02:00',
speaker: 'Jose Manuel Ortega Falcón',
},
{
name: 'Mi Experiencia como Desarrollador Junior en Latinoamérica: ¿Un Viaje hacia el Éxito?',
type: 'presentation',
url: '/imgs/EdgarMejia.jpeg',
url: '/imgs/EdgarMejia.webp',
date: '2023-07-21T20:30:00+02:00',
speaker: 'Edgar Mejia Vásquez',
},
Expand All @@ -27,14 +27,14 @@ const items: typeItem[] = [
{
name: 'El camino menos transitado: Cómo llegué al sector IT a los 35 añazos',
type: 'presentation',
url: '/imgs/Xero.jpg',
url: '/imgs/Xero.webp',
date: '2023-07-21T21:30:00+02:00',
speaker: 'David Rodriguez - Xerosec',
},
{
name: 'Magical girls UI: los secretos de la animación en Figma',
type: 'presentation',
url: '/imgs/Anais.png',
url: '/imgs/Anais.webp',
date: '2023-07-21T22:00:00+02:00',
speaker: 'Anaís Fernández Vilar',
},
Expand All @@ -47,7 +47,7 @@ const items: typeItem[] = [
{
name: 'Sobrevivir al Código - Guía para programadores impacientes',
type: 'presentation',
url: '/imgs/Kuro.png',
url: '/imgs/Kuro.webp',
date: '2023-07-21T23:00:00+02:00',
speaker: 'David Huertos - 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 @@ -21,7 +21,7 @@ export default function ScheduleItem({
/>
)}
<div className="flex flex-col font-bold gap-4 text-2xl leading-8 mb-2">
<div className="flex flex-col md:flex-row text-center items-center gap-x-4">
<div className="flex flex-col md:flex-row items-center gap-x-4">
<p
className={`md:max-w-[80%] ${
type === 'presentation'
Expand All @@ -37,7 +37,7 @@ export default function ScheduleItem({
</p>
</div>
{type === 'presentation' && (
<p className="text-gray-500 font-semibold text-center">
<p className="text-gray-500 font-semibold m-auto">
{speaker}
</p>
)}
Expand Down

0 comments on commit c4dad9c

Please sign in to comment.