Experiences & Events

Immersive events and experiences. Live workshops, hackathons, and exclusive lab access.

🎓 Workshops

Live hands-on workshops: build and deploy AI agents with expert guidance.

🏆 Hackathons

48-hour AI competitions with prizes, mentorship, and compute credits.

🔬 Lab Access

Exclusive access to ABC-IO research lab and early-stage AI capabilities.

🎤 Summit

Annual AI summit with keynotes, demos, and networking.

Loading events...
async function loadExperiences() { try { const resp = await fetch('/api/products?category=experiences'); const data = await resp.json(); document.getElementById('loading').style.display = 'none'; const list = document.getElementById('products-list'); list.style.display = 'grid'; list.innerHTML = data.products.map(p => `

${p.name}

${p.description||''}

$${p.price}/${p.interval||'one-time'}
`).join(''); } catch(e) { document.getElementById('loading').textContent = 'Unable to load.'; } } loadExperiences();