Skip to content

Commit a98dd2f

Browse files
authored
Merge pull request #54 from python-chile/53-corregir-horario-de-taller-2-en-pyday-valparaíso
Arregla horario taller, se muestra sessionize de Rgua en inicio, se o…
2 parents 3657b5e + 7ee58c3 commit a98dd2f

7 files changed

Lines changed: 32 additions & 11 deletions

File tree

143 KB
Loading
105 KB
Loading

src/app/globals.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,4 +374,7 @@ body {
374374
padding: 8px;
375375
text-align: center;
376376
}
377+
.empty-spot {
378+
background: gray;
379+
}
377380
}

src/app/page.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,13 @@ export default function Home() {
6868
Ya puedes revisar la agenda del evento PyDay 2026
6969
</p>
7070
<Link href="/talks" className="btn-primary">
71-
Ver agenda completa
71+
Ver agenda
7272
</Link>
7373
</div>
74-
) : (
75-
<EmptyState context="global" />
76-
)}
74+
) : null
75+
}
76+
<br/>
77+
<EmptyState context="global" />
7778
</section>
7879

7980
{/* Registro Section */}

src/components/TalksTable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ export default function TalksTable({talks}) {
6969
if (!Array.isArray(subrow)){
7070
if(subrow)
7171
return null;
72-
return <td key={ix1} style={{background: 'gray'}}></td>;
72+
return <td key={ix1} className="empty-spot"></td>;
7373
}
7474
return (<td key={ix1} rowSpan={subrow[0]}>
7575
<div className="text-xs"><b>{subrow[1].title}</b></div>
7676
<div className="flex" style={{justifyContent: "center"}}>
7777
{subrow[1].speakers.map((speaker, ix2) =>
7878
<div key={`${ix1}-${ix2}`} className="text-xs" style={{textAlign: 'center'}}>
7979
<div
80-
className="relative w-14 h-14 md:w-16 md:h-16 rounded-full overflow-hidden bg-purple-700 flex-shrink-0"
80+
className="relative w-14 h-14 md:w-16 md:h-16 rounded-full overflow-hidden bg-white flex-shrink-0"
8181
style={{display: 'inline-block'}}
8282
>
8383
<Image

src/data/cities.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const cityData = {
3030
},
3131
registrationLink:"https://www.eventbrite.com/e/1987656829082",
3232
registrationStatus: "open",
33-
talkProposalLink: "https://sessionize.com/pyday-valparaiso-2026/",
33+
talkProposalLink: "",
3434
schedule: allTalks.filter((talk) => talk.city === "valparaiso"),
3535
},
3636
santiago: {
@@ -57,7 +57,7 @@ const cityData = {
5757
},
5858
registrationLink:"https://www.eventbrite.com/e/1987656787959",
5959
registrationStatus: "open",
60-
talkProposalLink: "https://sessionize.com/pyday-santiago-2026/",
60+
talkProposalLink: "",
6161
schedule: allTalks.filter((talk) => talk.city === "santiago"),
6262
},
6363
rancagua: {
@@ -92,7 +92,7 @@ const cityData = {
9292
talkProposalLink: "https://sessionize.com/pyday-rancagua-2026/",
9393
schedule: allTalks.filter((talk) => talk.city === "rancagua"),
9494
},
95-
curico: {
95+
/*curico: {
9696
name: "Curicó",
9797
date: "Por definir",
9898
slug: "curico",
@@ -119,7 +119,7 @@ const cityData = {
119119
registrationStatus: "upcoming",
120120
talkProposalLink: "https://sessionize.com/pyday-curico-2026/",
121121
schedule: allTalks.filter((talk) => talk.city === "curico"),
122-
},
122+
},*/
123123

124124
};
125125

src/data/talks.js

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ const allTalks = [
345345
y modelos como Gemini pueden generar código funcional,
346346
tests y documentación casi instantáneamente,
347347
permitiendo que el foco vuelva a ser la resolución del problema y no la sintaxis.`,
348-
time: "14:30 - 15:00",
348+
time: "14:00 - 15:00",
349349
room: "Salón A2",
350350
speakers: [{
351351
name: "Lesly Zerna",
@@ -651,6 +651,23 @@ const allTalks = [
651651
level: "Intermedio",
652652
tags: ["IA"],
653653
},
654+
{
655+
id: 30,
656+
city: "santiago",
657+
type: "taller",
658+
title: ` PySchool: Escape Room – Misión Estación Espacial`,
659+
description: `En este taller del PyDay Santiago, el equipo de Python Chile te desafía a entrar a la Estación Espacial de PySchool:
660+
un juego de escape interactivo donde aprenderás las bases de Python desde cero, resolviendo enigmas habitación por habitación escribiendo código real por primera vez.`,
661+
time: "10:30 - 11:30",
662+
room: "Laboratorio Computación 2",
663+
speakers: [{
664+
name: "Python Chile",
665+
image: "/images/speakers/pyschool-logo.webp",
666+
}],
667+
category: "Educación",
668+
level: "Principiante",
669+
tags: ["Educación"],
670+
},
654671
];
655672

656673
export default allTalks;

0 commit comments

Comments
 (0)