-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathslidesfinal.html
More file actions
489 lines (432 loc) · 21.7 KB
/
slidesfinal.html
File metadata and controls
489 lines (432 loc) · 21.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cierre - Taller de Agentic Coding</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
overflow: hidden;
background: #1a1625;
}
.presentation {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.slide {
display: none;
width: 100%;
height: 100vh;
padding: 60px;
animation: fadeIn 0.5s ease-in;
}
.slide.active {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Title Slide */
.title-slide {
background: linear-gradient(135deg, #6B46C1 0%, #9333EA 50%, #3B82F6 100%);
color: white;
text-align: center;
}
.title-slide h1 {
font-size: 4rem;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
line-height: 1.2;
}
.title-slide .subtitle {
font-size: 1.8rem;
opacity: 0.95;
margin-bottom: 40px;
}
.logo-container {
display: flex;
gap: 40px;
margin-top: 40px;
align-items: center;
}
.logo {
background: rgba(255, 255, 255, 0.95);
padding: 12px 25px;
border-radius: 8px;
font-weight: 600;
color: #6B46C1;
}
/* Dark Content Slides */
.dark-slide {
background: #1a1625;
color: white;
}
.dark-slide h2 {
font-size: 2.8rem;
margin-bottom: 40px;
text-align: center;
}
/* Gradient text */
.gradient-text {
background: linear-gradient(90deg, #A78BFA 0%, #60A5FA 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}
/* Navigation */
.nav {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 15px;
z-index: 1000;
}
.nav-btn {
background: rgba(139, 92, 246, 0.9);
color: white;
border: none;
padding: 12px 24px;
border-radius: 25px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s ease;
}
.nav-btn:hover {
background: #8B5CF6;
transform: scale(1.05);
}
.slide-number {
position: fixed;
top: 30px;
right: 30px;
background: rgba(139, 92, 246, 0.2);
color: white;
padding: 10px 20px;
border-radius: 20px;
font-weight: 600;
border: 1px solid rgba(139, 92, 246, 0.3);
}
/* Responsive */
@media (max-width: 768px) {
.slide {
padding: 30px;
}
.title-slide h1 {
font-size: 2.5rem;
}
.dark-slide h2 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="presentation">
<!-- Slide 1: Feedback Form -->
<div class="slide active dark-slide">
<h2>📝 <span class="gradient-text">Tu Feedback es Importante</span></h2>
<div style="text-align: center; max-width: 900px; margin: 0 auto;">
<p style="color: #C4B5FD; font-size: 1.3rem; line-height: 1.6; margin-bottom: 40px;">
Ayudanos a mejorar el workshop para futuras ediciones
</p>
<!-- QR Code -->
<div
style="background: white; width: 300px; height: 300px; margin: 0 auto 30px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); padding: 20px;">
<img src="img/feedback-form-qr.png" alt="QR Code - Feedback Form" style="width: 100%; height: 100%; object-fit: contain;">
</div>
<!-- Link -->
<div
style="background: rgba(139, 92, 246, 0.2); padding: 20px; border-radius: 10px; border: 1px solid rgba(139, 92, 246, 0.4); margin-bottom: 30px;">
<p style="color: #A78BFA; font-size: 1rem; margin-bottom: 10px;">O visitá directamente:</p>
<p
style="color: #60A5FA; font-size: 1.2rem; font-family: 'Monaco', monospace; word-break: break-all;">
forms.gle/PLACEHOLDER123
</p>
</div>
<!-- CTA -->
<div
style="background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%); padding: 25px; border-radius: 12px; border: 2px solid #8B5CF6;">
<p style="color: white; font-size: 1.1rem; margin: 0; line-height: 1.6;">
⏱️ <strong>Solo toma 2 minutos</strong><br>
<span style="font-size: 0.95rem; opacity: 0.9;">¿Qué funcionó? ¿Qué mejorar? ¿Qué proyectos vas
a construir?</span>
</p>
</div>
</div>
</div>
<!-- Slide 2: Resources -->
<div class="slide dark-slide">
<h2>📚 <span class="gradient-text">Recursos para Continuar</span></h2>
<div style="max-width: 1000px; margin: 0 auto;">
<!-- Main Resources -->
<div style="display: grid; grid-template-columns: 1fr; gap: 25px; margin-bottom: 30px;">
<!-- BMad Repo -->
<div
style="background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%); border: 2px solid #8B5CF6; padding: 30px; border-radius: 12px;">
<div style="display: flex; align-items: center; gap: 20px; margin-bottom: 15px;">
<div style="font-size: 3rem;">📦</div>
<div>
<h3 style="color: #A78BFA; font-size: 1.5rem; margin: 0;">BMad Repository Completo</h3>
<p style="color: #C4B5FD; margin: 5px 0 0 0; font-size: 0.95rem;">Todo el código,
prompts, y documentación</p>
</div>
</div>
<div
style="background: #0F0E1A; padding: 15px; border-radius: 8px; font-family: 'Monaco', monospace;">
<a href="https://github.com/bmad-code-org/bmad-method/" target="_blank" style="color: #22D3EE; text-decoration: none;">github.com/bmad-code-org/bmad-method</a>
</div>
</div>
<!-- YouTube Tutorial -->
<div
style="background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%); border: 2px solid #EF4444; padding: 30px; border-radius: 12px;">
<div style="display: flex; align-items: center; gap: 20px; margin-bottom: 15px;">
<div style="font-size: 3rem;">🎥</div>
<div>
<h3 style="color: #FCA5A5; font-size: 1.5rem; margin: 0;">BMad Method Masterclass
</h3>
<p style="color: #FCD34D; margin: 5px 0 0 0; font-size: 0.95rem;">Tutorial completo en YouTube</p>
</div>
</div>
<div
style="background: #0F0E1A; padding: 15px; border-radius: 8px; font-family: 'Monaco', monospace;">
<a href="https://youtu.be/LorEJPrALcg" target="_blank" style="color: #22D3EE; text-decoration: none;">youtu.be/LorEJPrALcg</a>
</div>
</div>
</div>
<!-- Cost Effective Recommendation -->
<div
style="background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%); border: 2px solid #22C55E; padding: 30px; border-radius: 12px; margin-bottom: 20px;">
<div style="display: flex; align-items: center; gap: 20px; margin-bottom: 15px;">
<div style="font-size: 3rem;">💎</div>
<div>
<h3 style="color: #86EFAC; font-size: 1.5rem; margin: 0;">Recomendación: Z.ai Coding Plan</h3>
<p style="color: #C4B5FD; margin: 5px 0 0 0; font-size: 0.95rem;">Solo $3/mes • GLM 4.6 • Performance cercano a Sonnet 4</p>
</div>
</div>
<div
style="background: #0F0E1A; padding: 15px; border-radius: 8px; font-family: 'Monaco', monospace; margin-bottom: 15px;">
<a href="https://z.ai/subscribe" target="_blank" style="color: #22D3EE; text-decoration: none;">z.ai/subscribe</a>
</div>
<p style="color: #E5E7EB; font-size: 0.95rem; margin: 0; line-height: 1.6;">
La opción más económica para usar BMad con un modelo de alta calidad. Perfecto para estudiantes y proyectos personales.
</p>
</div>
<!-- Bottom CTA -->
<div
style="text-align: center; margin-top: 30px; padding: 20px; background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%); border-radius: 10px; border: 2px solid #22C55E;">
<p style="color: #86EFAC; font-size: 1.2rem; margin: 0;">
🚀 <strong>Empezá tu primer proyecto hoy</strong>
</p>
</div>
</div>
</div>
<!-- Slide 3: AIS Workshop Invitation -->
<div class="slide dark-slide">
<h2>☕ <span class="gradient-text">¡Seguí Aprendiendo con Nosotros!</span></h2>
<div style="text-align: center; max-width: 1200px; margin: 0 auto;">
<!-- Main Content Grid -->
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 20px;">
<!-- Left Column: Info -->
<div style="display: flex; flex-direction: column; gap: 20px;">
<!-- Workshop Header -->
<div
style="background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%); border: 2px solid #8B5CF6; padding: 25px; border-radius: 12px;">
<h3 style="color: white; font-size: 2rem; margin: 0 0 15px 0;">
<img src="img/jacarandashield.png" style="height: 1em; vertical-align: middle; margin-right: 10px;">
Workshop de AI Safety
</h3>
<div style="background: rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 10px; margin-bottom: 15px;">
<p style="color: #FCD34D; font-size: 1.5rem; font-weight: 700; margin: 0;">
🗓️ Martes 15:00-17:00
</p>
<p style="color: white; font-size: 1.1rem; margin: 8px 0 0 0;">
📍 Sala 1604
</p>
</div>
<p style="color: #C4B5FD; font-size: 1rem; line-height: 1.6; text-align: left;">
• Discutí proyectos de AI<br>
• Trabajá en replicaciones de papers<br>
• Compartí ideas y feedback<br>
• <strong style="color: #86EFAC;">☕ Café y medialunas gratis</strong>
</p>
</div>
<!-- Important Info -->
<div
style="background: rgba(34, 197, 94, 0.1); border: 2px solid #22C55E; padding: 25px; border-radius: 12px;">
<h4 style="color: #86EFAC; margin: 0 0 15px 0; font-size: 1.2rem;">✨ Importante</h4>
<div style="text-align: left; color: #E5E7EB; line-height: 1.8;">
<p style="margin: 8px 0;"><strong style="color: #86EFAC;">✅ Abierto a todos</strong><br>
<span style="font-size: 0.85rem; opacity: 0.9;">No necesitas inscripción previa</span>
</p>
<p style="margin: 8px 0;"><strong style="color: #86EFAC;">✅ Sin requisitos previos</strong><br>
<span style="font-size: 0.85rem; opacity: 0.9;">Todos los niveles bienvenidos</span>
</p>
<p style="margin: 8px 0;"><strong style="color: #86EFAC;">✅ Ambiente colaborativo</strong><br>
<span style="font-size: 0.85rem; opacity: 0.9;">Aprende y comparte con otros</span>
</p>
</div>
</div>
</div>
<!-- Right Column: Luma Embed & QR -->
<div style="display: flex; flex-direction: column; gap: 20px;">
<!-- Luma Embed -->
<div style="background: rgba(139, 92, 246, 0.05); border: 1px solid rgba(139, 92, 246, 0.2); padding: 20px; border-radius: 12px; flex: 1;">
<h4 style="color: #A78BFA; margin: 0 0 15px 0; text-align: center; font-size: 1.1rem;">📅 Registrate Ahora</h4>
<iframe
src="https://lu.ma/embed-checkout/iwui7ve9"
width="100%"
height="380"
frameborder="0"
style="border: 1px solid rgba(139, 92, 246, 0.3); border-radius: 8px;"
allowfullscreen=""
aria-hidden="false"
tabindex="0">
</iframe>
</div>
<!-- QR Code -->
<div
style="background: rgba(139, 92, 246, 0.1); border: 2px solid #8B5CF6; padding: 20px; border-radius: 12px; text-align: center;">
<h4 style="color: #A78BFA; margin: 0 0 15px 0; font-size: 1rem;">📱 O Escaneá el QR</h4>
<div style="background: white; width: 140px; height: 140px; margin: 0 auto 12px; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 8px;">
<img src="img/ais-workshop-qr.png" alt="QR Code" style="width: 100%; height: 100%; object-fit: contain;">
</div>
<p style="color: #60A5FA; font-size: 0.85rem; font-family: 'Monaco', monospace; margin: 0;">
<a href="https://luma.com/iwui7ve9" target="_blank" style="color: #60A5FA; text-decoration: none;">luma.com/iwui7ve9</a>
</p>
</div>
</div>
</div>
<!-- Final CTA -->
<div
style="padding: 15px; background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%); border-radius: 10px;">
<p style="color: white; font-size: 1.1rem; margin: 0; font-weight: 600;">
☕ Te esperamos el martes con café y buenas ideas
</p>
</div>
</div>
</div>
<!-- Slide 4: Thank You -->
<div class="slide title-slide">
<h1 style="font-size: 3.5rem; margin-bottom: 30px;">¡Gracias!</h1>
<div class="subtitle" style="font-size: 1.5rem; margin-bottom: 40px;">
Ahora... ¡a construir proyectos increíbles! 🚀
</div>
<div class="logo-container">
<div class="logo" style="display: flex; align-items: center; gap: 10px;">
<img src="img/jacarandashield.png" style="height: 30px;">
<span>BAISH</span>
</div>
<div class="logo" style="display: flex; align-items: center; gap: 10px;">
<img src="img/yhatlogo.jpg" style="height: 30px;">
<span>Y-hat</span>
</div>
</div>
<!-- QR Codes Section -->
<div style="margin-top: 50px; display: flex; justify-content: center; gap: 40px;">
<!-- Feedback QR -->
<div style="text-align: center;">
<div style="background: white; width: 150px; height: 150px; margin: 0 auto 15px; border-radius: 10px; padding: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);">
<img src="img/feedback-form-qr.png" alt="Feedback Form" style="width: 100%; height: 100%; object-fit: contain;">
</div>
<p style="color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; margin: 0;">📝 Feedback</p>
</div>
<!-- WhatsApp QR -->
<div style="text-align: center;">
<div style="background: white; width: 150px; height: 150px; margin: 0 auto 15px; border-radius: 10px; padding: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);">
<img src="img/whatsapp-group-qr.png" alt="WhatsApp Group" style="width: 100%; height: 100%; object-fit: contain;">
</div>
<p style="color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; margin: 0;">💬 WhatsApp</p>
</div>
<!-- AIS Workshop QR -->
<div style="text-align: center;">
<div style="background: white; width: 150px; height: 150px; margin: 0 auto 15px; border-radius: 10px; padding: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);">
<img src="img/ais-workshop-qr.png" alt="AIS Workshop" style="width: 100%; height: 100%; object-fit: contain;">
</div>
<p style="color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; margin: 0;">☕ AIS Workshop</p>
</div>
</div>
<div style="margin-top: 40px; color: rgba(255, 255, 255, 0.8); font-size: 1.1rem;">
<p>🌐 Web: <span style="border-bottom: 1px solid rgba(255, 255, 255, 0.5);">baish.com.ar</span></p>
</div>
</div>
</div>
<!-- Navigation -->
<div class="nav">
<button class="nav-btn" onclick="previousSlide()">← Anterior</button>
<button class="nav-btn" onclick="nextSlide()">Siguiente →</button>
</div>
<div class="slide-number">
<span id="currentSlide">1</span> / <span id="totalSlides">4</span>
</div>
<script>
let currentSlide = 0;
const slides = document.querySelectorAll('.slide');
const totalSlides = slides.length;
document.getElementById('totalSlides').textContent = totalSlides;
function showSlide(n) {
slides[currentSlide].classList.remove('active');
currentSlide = (n + totalSlides) % totalSlides;
slides[currentSlide].classList.add('active');
document.getElementById('currentSlide').textContent = currentSlide + 1;
}
function nextSlide() {
showSlide(currentSlide + 1);
}
function previousSlide() {
showSlide(currentSlide - 1);
}
// Keyboard navigation
document.addEventListener('keydown', function (e) {
if (e.key === 'ArrowRight' || e.key === ' ') {
nextSlide();
} else if (e.key === 'ArrowLeft') {
previousSlide();
} else if (e.key === 'Home') {
showSlide(0);
} else if (e.key === 'End') {
showSlide(totalSlides - 1);
}
});
// Touch/swipe support for mobile
let touchStartX = 0;
let touchEndX = 0;
document.addEventListener('touchstart', function (e) {
touchStartX = e.changedTouches[0].screenX;
});
document.addEventListener('touchend', function (e) {
touchEndX = e.changedTouches[0].screenX;
handleSwipe();
});
function handleSwipe() {
if (touchEndX < touchStartX - 50) {
nextSlide();
}
if (touchEndX > touchStartX + 50) {
previousSlide();
}
}
</script>
</body>
</html>