Skip to content

Commit c6aa0a8

Browse files
committed
Add new workshops
1 parent da01121 commit c6aa0a8

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed
Loading
837 KB
Loading

src/components/Workshops.astro

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ import aaron from "../assets/images/workshops/Aaron-Guerrero.jpeg"
88
import vanesa from "../assets/images/workshops/Vanesa-Velasquez.png"
99
import julioCesar from "../assets/images/workshops/Julio-Cesar-Ruiz.jpg"
1010
11+
import mauro from "../assets/images/workshops/Mauro-Gomez.jpeg"
12+
import sandro from "../assets/images/workshops/Sandro-Moreira.png"
13+
import juanGuillermo from "../assets/images/workshops/Juan-Guillermo.jpeg"
14+
1115
const workshops = [
1216
{
1317
id: "1",
@@ -66,6 +70,38 @@ const workshops = [
6670
},
6771
],
6872
},
73+
{
74+
id: "3",
75+
date: "Vie. 26 abril 2024",
76+
links: [
77+
"https://www.facebook.com/gdgtarija/",
78+
"https://www.facebook.com/GDGLaPaz/",
79+
"https://www.facebook.com/GDGCochabamba/",
80+
],
81+
details: [
82+
{
83+
time: "20:00 (GMT-4)",
84+
title: "Google Gemini y Gemma: El inicio de una nueva era en IA",
85+
img: mauro,
86+
speaker: "Mauro Gómez Herrera 🇨🇱",
87+
position: "CEO de PyxJam",
88+
},
89+
{
90+
time: "20:30 (GMT-4)",
91+
title: "Potenciando sus aplicaciones con IA de Google MediaPipe",
92+
img: sandro,
93+
speaker: "Sandro Moreira 🇧🇷",
94+
position: "Professor y CIO en Univ. Rio Verde",
95+
},
96+
{
97+
time: "21:00 (GMT-4)",
98+
title: "Evaluando los Generative Models con Rapid Evaluation de Vertex AI",
99+
img: juanGuillermo,
100+
speaker: "Juan Guillermo Gómez 🇲🇽",
101+
position: "GDE en Machine Learning",
102+
},
103+
],
104+
},
69105
]
70106
---
71107

@@ -100,6 +136,7 @@ const workshops = [
100136

101137
<script is:inline define:vars={{ workshops }}>
102138
for ({ id, links } of workshops) {
139+
// choose a random link to avoid favoring any particular chapter
103140
document.getElementById(id).href = links[Math.floor(Math.random() * links.length)]
104141
}
105142
</script>

0 commit comments

Comments
 (0)