-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
577 lines (549 loc) · 29.7 KB
/
index.html
File metadata and controls
577 lines (549 loc) · 29.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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Robotics Coaches Forum</title>
<script src="/_sdk/data_sdk.js"></script>
<script src="/_sdk/element_sdk.js"></script>
<script src="https://cdn.tailwindcss.com/3.4.17"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
brand: {
black: "#0b0b0b",
red: "#d71920",
white: "#ffffff",
gray: "#f2f2f2"
}
},
fontFamily: {
display: ["Space Grotesk", "system-ui", "sans-serif"],
body: ["IBM Plex Sans", "system-ui", "sans-serif"]
},
boxShadow: {
red: "0 20px 45px -30px rgba(215, 25, 32, 0.6)",
soft: "0 20px 40px -30px rgba(0, 0, 0, 0.35)"
}
}
}
};
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<style>
:root {
color-scheme: light;
}
body {
font-family: "IBM Plex Sans", system-ui, sans-serif;
background: #ffffff;
color: #111111;
}
.bg-grid {
background-image:
linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
background-size: 24px 24px;
background-position: -1px -1px;
}
.hero-glow {
background: radial-gradient(circle at 20% 20%, rgba(215, 25, 32, 0.15), transparent 55%),
radial-gradient(circle at 80% 0%, rgba(0, 0, 0, 0.12), transparent 45%);
}
.section-divider {
border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.badge {
border: 1px solid rgba(0, 0, 0, 0.1);
}
.loading-spinner {
display: inline-block;
width: 18px;
height: 18px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-top-color: #ffffff;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.success-message {
display: none;
}
.success-message.show {
display: block;
}
</style>
</head>
<body class="bg-brand-white text-brand-black">
<div class="min-h-screen bg-grid">
<header class="sticky top-0 z-50 bg-brand-black text-brand-white">
<div class="mx-auto flex w-full max-w-6xl items-center justify-between gap-6 px-6 py-5">
<div class="flex items-center gap-3">
<img
class="h-10 w-10 rounded-full object-cover"
src="images/VEX_logo.png"
alt="VEX Robotics logo"
/>
<div>
<p class="font-display text-lg font-semibold tracking-tight" id="site-title">Robotics Coaches Forum</p>
<p class="text-xs uppercase tracking-[0.3em] text-white/70">VEX Robotics Coaches</p>
</div>
</div>
<nav class="hidden items-center gap-6 text-sm font-medium md:flex">
<a class="transition hover:text-brand-red" href="#overview">Overview</a>
<a class="transition hover:text-brand-red" href="#agenda">Agenda</a>
<a class="transition hover:text-brand-red" href="#presenters">Presenters</a>
<a class="transition hover:text-brand-red" href="#register">Register</a>
<a class="transition hover:text-brand-red" href="#logistics">Logistics</a>
</nav>
<a
class="hidden rounded-full bg-brand-red px-4 py-2 text-sm font-semibold text-white shadow-red transition hover:-translate-y-0.5 md:inline-flex"
href="#register"
>
Reserve a seat
</a>
</div>
</header>
<section>
<img
class="h-auto w-full object-cover"
src="images/hero.png"
alt="Robotics Coaches Forum hero banner"
/>
</section>
<main>
<section class="hero-glow" id="overview">
<div class="mx-auto grid w-full max-w-6xl gap-10 px-6 py-16 lg:grid-cols-[1.2fr_0.8fr]">
<div class="space-y-6">
<p class="badge inline-flex items-center gap-2 rounded-full px-4 py-2 text-xs font-semibold uppercase tracking-[0.25em] text-brand-black">
October 6-7, 2026
</p>
<h1 class="font-display text-4xl font-semibold tracking-tight text-brand-black sm:text-5xl">
A two-day forum for VEX Robotics coaches focused on strategy, mentoring, and competitive readiness.
</h1>
<p class="max-w-xl text-lg text-black/70">
Join fellow coaches for hands-on sessions, panels, and workshops that sharpen team leadership, engineering practice, and competition preparation.
</p>
<div class="flex flex-wrap gap-4">
<a
class="rounded-full bg-brand-red px-6 py-3 text-sm font-semibold text-white shadow-red transition hover:-translate-y-0.5"
href="#register"
>
Register interest
</a>
<a
class="rounded-full border border-black/20 px-6 py-3 text-sm font-semibold text-brand-black transition hover:border-brand-red hover:text-brand-red"
href="#agenda"
>
View agenda
</a>
</div>
<div class="grid gap-4 sm:grid-cols-3">
<div class="rounded-2xl bg-white p-4 shadow-soft">
<p class="text-xs uppercase tracking-[0.2em] text-black/60">Location</p>
<p class="mt-2 text-sm font-semibold" id="conference-dates">
October 6-7, 2026 · <span id="host-school">SSIS (South Saigon International School)</span>
</p>
</div>
<div class="rounded-2xl bg-white p-4 shadow-soft">
<p class="text-xs uppercase tracking-[0.2em] text-black/60">Audience</p>
<p class="mt-2 text-sm font-semibold">Coaches, mentors, STEM leaders</p>
</div>
<div class="rounded-2xl bg-white p-4 shadow-soft">
<p class="text-xs uppercase tracking-[0.2em] text-black/60">Format</p>
<p class="mt-2 text-sm font-semibold">Keynotes, workshops, labs</p>
</div>
</div>
</div>
<div class="rounded-3xl bg-brand-black p-8 text-white shadow-soft">
<h2 class="font-display text-2xl font-semibold">Why attend</h2>
<ul class="mt-6 space-y-4 text-sm text-white/80">
<li class="flex gap-3">
<span class="mt-1 h-2 w-2 rounded-full bg-brand-red"></span>
Leave with repeatable practice plans for the season.
</li>
<li class="flex gap-3">
<span class="mt-1 h-2 w-2 rounded-full bg-brand-red"></span>
Meet coaches running championship-level programs.
</li>
<li class="flex gap-3">
<span class="mt-1 h-2 w-2 rounded-full bg-brand-red"></span>
Build pipelines for student leadership and retention.
</li>
<li class="flex gap-3">
<span class="mt-1 h-2 w-2 rounded-full bg-brand-red"></span>
Share resources and tools with the broader VEX community.
</li>
</ul>
<div class="mt-8 rounded-2xl bg-white/10 p-4">
<p class="text-xs uppercase tracking-[0.2em] text-white/60">Presented by</p>
<p class="mt-2 text-sm font-semibold text-white">Robotics Coaches Forum organizing committee</p>
</div>
</div>
</div>
</section>
<section class="section-divider" id="agenda">
<div class="mx-auto w-full max-w-6xl px-6 py-16">
<div class="flex flex-col gap-6 sm:flex-row sm:items-end sm:justify-between">
<div>
<p class="text-xs uppercase tracking-[0.3em] text-black/60">Agenda</p>
<h2 class="font-display text-3xl font-semibold">Two days of focused coaching development</h2>
</div>
<p class="max-w-xl text-sm text-black/60">
Sessions are designed for coaches who want to improve competitive readiness, engineering practice, and team culture.
</p>
</div>
<div class="mt-10 grid gap-8 lg:grid-cols-2">
<div class="rounded-3xl border border-black/10 bg-white p-6 shadow-soft">
<div class="flex items-center justify-between">
<h3 class="font-display text-xl font-semibold">Day 1 — October 6, 2026</h3>
<span class="rounded-full bg-brand-red/10 px-3 py-1 text-xs font-semibold text-brand-red">Strategy</span>
</div>
<div class="mt-6 space-y-5 text-sm text-black/70">
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">9:00 - 9:30</p>
<div class="flex-1">
<p class="font-semibold text-black">Welcome and opening keynote</p>
<p class="text-black/60">The future of VEX coaching and competitive culture.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">9:30 - 10:30</p>
<div class="flex-1">
<p class="font-semibold text-black">Strategy Session Choice 1</p>
<p class="text-black/60">Leadership systems that scale across seasons.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">10:30 - 11:30</p>
<div class="flex-1">
<p class="font-semibold text-black">Strategy Session Choice 2</p>
<p class="text-black/60">Embedding robotics into academic pathways.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">11:30 - 1:00</p>
<div class="flex-1">
<p class="font-semibold text-black">Lunch and networking</p>
<p class="text-black/60">Connect with coaches and mentors.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">1:00 - 2:00</p>
<div class="flex-1">
<p class="font-semibold text-black">Strategy Session Choice 3</p>
<p class="text-black/60">Autonomous routines and reliability strategies.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6">
<p class="font-semibold text-brand-red">2:00 - 3:00</p>
<div class="flex-1">
<p class="font-semibold text-black">Coach roundtables</p>
<p class="text-black/60">Open discussions on program challenges.</p>
</div>
</div>
</div>
</div>
<div class="rounded-3xl border border-black/10 bg-white p-6 shadow-soft">
<div class="flex items-center justify-between">
<h3 class="font-display text-xl font-semibold">Day 2 — October 7, 2026</h3>
<span class="rounded-full bg-brand-red/10 px-3 py-1 text-xs font-semibold text-brand-red">Engineering</span>
</div>
<div class="mt-6 space-y-5 text-sm text-black/70">
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">9:00 - 10:00</p>
<div class="flex-1">
<p class="font-semibold text-black">Engineering Keynote</p>
<p class="text-black/60">CAD workflows used by top teams.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">10:00 - 11:00</p>
<div class="flex-1">
<p class="font-semibold text-black">Engineering Session Choice 1</p>
<p class="text-black/60">Retention strategies that build team legacy.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">11:00 - 12:00</p>
<div class="flex-1">
<p class="font-semibold text-black">Engineering Session Choice 2</p>
<p class="text-black/60">Tournament planning and on-site execution.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">12:00 - 1:30</p>
<div class="flex-1">
<p class="font-semibold text-black">Lunch and networking</p>
<p class="text-black/60">Continue conversations with peers.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6 border-b border-black/10 pb-4">
<p class="font-semibold text-brand-red">1:30 - 2:30</p>
<div class="flex-1">
<p class="font-semibold text-black">Engineering Session Choice 3</p>
<p class="text-black/60">Sponsors, grants, and sustainable budgets.</p>
</div>
</div>
<div class="flex items-start justify-between gap-6">
<p class="font-semibold text-brand-red">2:30 - 3:00</p>
<div class="flex-1">
<p class="font-semibold text-black">Closing remarks</p>
<p class="text-black/60">Key takeaways and next steps.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section-divider" id="presenters">
<div class="mx-auto w-full max-w-6xl px-6 py-16">
<div class="flex flex-col gap-6 sm:flex-row sm:items-end sm:justify-between">
<div>
<p class="text-xs uppercase tracking-[0.3em] text-black/60">Presenters</p>
<h2 class="font-display text-3xl font-semibold">Learn from industry and coaching leaders</h2>
</div>
<p class="max-w-xl text-sm text-black/60">
Each session is led by coaches and educators with proven success at regional and national VEX events.
</p>
</div>
<div class="mt-10 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
<div class="rounded-2xl border border-black/10 bg-white p-6 shadow-soft">
<div class="flex h-12 w-12 items-center justify-center rounded-full bg-brand-red text-lg font-semibold text-white">JM</div>
<h3 class="mt-4 font-display text-lg font-semibold">James Mitchell</h3>
<p class="text-xs uppercase tracking-[0.2em] text-brand-red">Competition Director</p>
<p class="mt-3 text-sm text-black/60">15+ years of VEX coaching with 8 state championship titles.</p>
</div>
<div class="rounded-2xl border border-black/10 bg-white p-6 shadow-soft">
<div class="flex h-12 w-12 items-center justify-center rounded-full bg-brand-red text-lg font-semibold text-white">SR</div>
<h3 class="mt-4 font-display text-lg font-semibold">Sarah Rodriguez</h3>
<p class="text-xs uppercase tracking-[0.2em] text-brand-red">Lead Engineer</p>
<p class="mt-3 text-sm text-black/60">Specializes in advanced mechanical design and CAD optimization.</p>
</div>
<div class="rounded-2xl border border-black/10 bg-white p-6 shadow-soft">
<div class="flex h-12 w-12 items-center justify-center rounded-full bg-brand-red text-lg font-semibold text-white">DK</div>
<h3 class="mt-4 font-display text-lg font-semibold">Dr. David Kim</h3>
<p class="text-xs uppercase tracking-[0.2em] text-brand-red">STEM Education Specialist</p>
<p class="mt-3 text-sm text-black/60">Pioneered VEX curriculum integration across 200+ schools.</p>
</div>
<div class="rounded-2xl border border-black/10 bg-white p-6 shadow-soft">
<div class="flex h-12 w-12 items-center justify-center rounded-full bg-brand-red text-lg font-semibold text-white">EP</div>
<h3 class="mt-4 font-display text-lg font-semibold">Emma Patel</h3>
<p class="text-xs uppercase tracking-[0.2em] text-brand-red">Programming Expert</p>
<p class="mt-3 text-sm text-black/60">World-class robotics programmer with autonomous systems expertise.</p>
</div>
<div class="rounded-2xl border border-black/10 bg-white p-6 shadow-soft">
<div class="flex h-12 w-12 items-center justify-center rounded-full bg-brand-red text-lg font-semibold text-white">MC</div>
<h3 class="mt-4 font-display text-lg font-semibold">Marcus Chen</h3>
<p class="text-xs uppercase tracking-[0.2em] text-brand-red">Program Sustainability</p>
<p class="mt-3 text-sm text-black/60">Builds sustainable programs through strategic funding partnerships.</p>
</div>
<div class="rounded-2xl border border-black/10 bg-white p-6 shadow-soft">
<div class="flex h-12 w-12 items-center justify-center rounded-full bg-brand-red text-lg font-semibold text-white">AL</div>
<h3 class="mt-4 font-display text-lg font-semibold">Alexandra Lopez</h3>
<p class="text-xs uppercase tracking-[0.2em] text-brand-red">Engagement Director</p>
<p class="mt-3 text-sm text-black/60">Increased student retention by 85% across mentored programs.</p>
</div>
</div>
</div>
</section>
<section class="section-divider" id="register">
<div class="mx-auto w-full max-w-6xl px-6 py-16">
<div class="grid gap-10 lg:grid-cols-[1fr_0.9fr]">
<div>
<p class="text-xs uppercase tracking-[0.3em] text-black/60">Register</p>
<h2 class="font-display text-3xl font-semibold">Reserve your spot and submit a proposal</h2>
<p class="mt-3 text-sm text-black/60">
Use the form to register interest and optionally submit a presentation proposal. We will follow up with confirmation and logistics.
</p>
<a
class="mt-6 inline-flex rounded-full bg-brand-red px-6 py-3 text-sm font-semibold text-white shadow-red transition hover:-translate-y-0.5"
href="javascript:void(
window.open(
'https://hkis.jotform.com/260529001200034',
'blank',
'scrollbars=yes,toolbar=no,width=700,height=500'
)
)"
>
Open registration form
</a>
</div>
<aside class="flex justify-end">
<div class="w-full max-w-sm rounded-3xl bg-brand-black p-8 text-white shadow-soft">
<p class="text-xs uppercase tracking-[0.2em] text-white/60">Share with your team</p>
<p class="mt-2 text-sm text-white/80">Invite other coaches and mentors to build a stronger network.</p>
<div class="mt-4 grid grid-cols-2 gap-3 text-xs font-semibold">
<button class="share-btn rounded-full border border-white/30 px-4 py-2 text-white transition hover:border-white hover:text-white" type="button" data-share="copy">
Copy link
</button>
<a class="share-link rounded-full border border-white/30 px-4 py-2 text-center text-white transition hover:border-white hover:text-white" data-share="linkedin" href="#" target="_blank" rel="noopener noreferrer">
LinkedIn
</a>
<a class="share-link rounded-full border border-white/30 px-4 py-2 text-center text-white transition hover:border-white hover:text-white" data-share="x" href="#" target="_blank" rel="noopener noreferrer">
X (Twitter)
</a>
<a class="share-link rounded-full border border-white/30 px-4 py-2 text-center text-white transition hover:border-white hover:text-white" data-share="whatsapp" href="#" target="_blank" rel="noopener noreferrer">
WhatsApp
</a>
</div>
</div>
</aside>
</div>
</div>
</section>
<section class="section-divider" id="logistics">
<div class="mx-auto w-full max-w-6xl px-6 py-16">
<div class="flex flex-col gap-6 sm:flex-row sm:items-end sm:justify-between">
<div>
<p class="text-xs uppercase tracking-[0.3em] text-black/60">Logistics</p>
<h2 class="font-display text-3xl font-semibold">Venue, accommodations, and essentials</h2>
</div>
<p class="max-w-xl text-sm text-black/60">
Final details will be confirmed closer to the event. All sessions take place at the host school.
</p>
</div>
<div class="mt-10 grid gap-8 lg:grid-cols-2">
<div class="rounded-3xl border border-black/10 bg-white p-6 shadow-soft">
<h3 class="font-display text-xl font-semibold">Host school</h3>
<p class="mt-3 text-sm text-black/60">South Saigon International School (SSIS)</p>
<p class="mt-4 text-sm text-black/70"><strong>Address:</strong> 1 Tran Nhat Duat Street, District 1, Ho Chi Minh City, Vietnam</p>
<p class="mt-2 text-sm text-black/70"><strong>Parking:</strong> Ample parking available on campus</p>
<p class="mt-2 text-sm text-black/70"><strong>Accessibility:</strong> Wheelchair accessible facilities</p>
<div class="mt-4 h-64 overflow-hidden rounded-2xl border border-black/10">
<iframe
title="Host school map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3919.4896523563505!2d106.69648!3d10.78085!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31752f2f9fc5d3ad%3A0x8e8b7e6f5d4c3b2a!2sSouth%20Saigon%20International%20School!5e0!3m2!1sen!2s!4v1234567890"
class="h-full w-full border-0"
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
</div>
</div>
<div class="rounded-3xl border border-black/10 bg-white p-6 shadow-soft">
<h3 class="font-display text-xl font-semibold">Accommodation</h3>
<p class="mt-3 text-sm text-black/60" id="hotel-name">Preferred Hotel TBC</p>
<p class="mt-4 text-sm text-black/70"><strong>Location:</strong> Within walking distance of SSIS</p>
<p class="mt-2 text-sm text-black/70"><strong>Special rate:</strong> Mention "Robotics Coaches Forum" when booking</p>
<p class="mt-2 text-sm text-black/70"><strong>Booking:</strong> Details coming soon</p>
<div class="mt-4 h-64 overflow-hidden rounded-2xl border border-black/10">
<iframe
title="Hotel map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3919.485!2d106.7!3d10.78!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31752f3a1b5b1b1b%3A0x1a1a1a1a1a1a1a1a!2sHo%20Chi%20Minh%20City%20Hotels!5e0!3m2!1sen!2s!4v1234567890"
class="h-full w-full border-0"
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
</div>
</div>
</div>
<div class="mt-10 grid gap-6 sm:grid-cols-2 lg:grid-cols-4">
<div class="rounded-2xl bg-brand-black p-5 text-white">
<p class="text-xs uppercase tracking-[0.2em] text-white/60">Dates</p>
<p class="mt-2 text-sm font-semibold" id="logistics-dates">October 6-7, 2026</p>
</div>
<div class="rounded-2xl border border-black/10 bg-white p-5">
<p class="text-xs uppercase tracking-[0.2em] text-black/60">Hours</p>
<p class="mt-2 text-sm font-semibold">9:00 AM - 3:00 PM</p>
<p class="mt-2 text-xs text-black/50">Day 1 lunch 11:30-1:00, Day 2 lunch 12:00-1:30</p>
</div>
<div class="rounded-2xl border border-black/10 bg-white p-5">
<p class="text-xs uppercase tracking-[0.2em] text-black/60">Meals</p>
<p class="mt-2 text-sm font-semibold">Breakfast and lunch provided</p>
</div>
<div class="rounded-2xl border border-black/10 bg-white p-5">
<p class="text-xs uppercase tracking-[0.2em] text-black/60">Questions</p>
<p class="mt-2 text-sm font-semibold">forum@roboticscoaches.vex</p>
</div>
</div>
</div>
</section>
</main>
<footer class="section-divider">
<div class="mx-auto flex w-full max-w-6xl flex-col gap-4 px-6 py-10 text-sm text-black/60 sm:flex-row sm:items-center sm:justify-between">
<p>Robotics Coaches Forum — built for VEX Robotics leaders.</p>
<p>Hosted by SSIS · October 6-7, 2026</p>
</div>
</footer>
</div>
<script>
let config = {
site_title: "Robotics Coaches Forum",
conference_dates: "October 6-7, 2026",
host_school: "SSIS (South Saigon International School)",
hotel_name: "Preferred Hotel TBC"
};
const defaultConfig = { ...config };
if (window.elementSdk && typeof window.elementSdk.init === "function") {
window.elementSdk.init({
defaultConfig,
onConfigChange: async (newConfig) => {
config = newConfig;
document.getElementById("site-title").textContent = config.site_title;
document.getElementById("conference-dates").innerHTML =
config.conference_dates + " · <span id=\"host-school\">" + config.host_school + "</span>";
document.getElementById("host-school").textContent = config.host_school;
document.getElementById("hotel-name").textContent = config.hotel_name;
document.getElementById("logistics-dates").textContent = config.conference_dates;
},
mapToCapabilities: () => ({
recolorables: [],
borderables: [],
fontEditable: undefined,
fontSizeable: undefined
}),
mapToEditPanelValues: () =>
new Map([
["site_title", config.site_title],
["conference_dates", config.conference_dates],
["host_school", config.host_school],
["hotel_name", config.hotel_name]
])
});
} else {
console.warn("elementSdk not available; running in static mode.");
}
function updateShareLinks() {
const url = encodeURIComponent(window.location.href);
const text = encodeURIComponent("Robotics Coaches Forum — October 6-7, 2026");
document.querySelectorAll(".share-link").forEach((link) => {
const type = link.dataset.share;
if (type === "linkedin") {
link.href = `https://www.linkedin.com/sharing/share-offsite/?url=${url}`;
} else if (type === "x") {
link.href = `https://x.com/intent/tweet?url=${url}&text=${text}`;
} else if (type === "whatsapp") {
link.href = `https://wa.me/?text=${text}%20${url}`;
}
});
}
updateShareLinks();
const copyBtn = document.querySelector('[data-share="copy"]');
if (copyBtn) {
copyBtn.addEventListener("click", async () => {
try {
await navigator.clipboard.writeText(window.location.href);
copyBtn.textContent = "Copied!";
setTimeout(() => {
copyBtn.textContent = "Copy link";
}, 2000);
} catch (err) {
alert("Copy failed. Please copy the URL from your browser.");
}
});
}
</script>
</body>
</html>