top of page

EVENTS

Repertoire of Offerings

bottom of page
// APOLLO OMEGA: INTEGRATION REPAIR (v2.0) import wixLocation from 'wix-location'; // IMPORTING NAVIGATION TOOL $w.onReady(function () { // --- 1. THE BUTTON FIX (Audio Unlock + Navigation) --- $w("#button3").onClick(() => { console.log("SYSTEM UNLOCKED."); // A. Play silent boot sound to unlock browser audio $w("#apolloAudio").src = "https://https://static.wixstatic.com/mp3/1d7bfc_650fe942b18b43948e80327bc4532620.mp3"; $w("#apolloAudio").play(); // B. NAVIGATE TO THE MAIN EXPERIENCE // If this button is on a landing page and you want to go to "Home": // CHANGE "/home" to your actual page URL slug (e.g., "/district", "/main") // If you just want the button to disappear so you can see the bot, delete this line. // --- 2. THE VIDEO FIX (Targeting #videobox2) --- // We listen for the signal from Voiceflow $w("#voiceflowEmbed").onMessage((event) => { let command = event.data; console.log("MODE RECEIVED:", command.mode); // *** PASTE YOUR REAL LINKS BELOW OR IT WILL NOT WORK *** if (command.mode === "wealth") { // THE GODDESS $w("#videobox2").src = "https://video.wixstatic.com/video/1d7bfc_71c4596f8b1b404b864ead5a94660ee7/720p/mp4/file.mp4"; } else if (command.mode === "defense") { // THE SPARTAN $w("#videobox2").src = "https://video.wixstatic.com/video/1d7bfc_377a08e4fdf94dc8b337846db24e7166/720p/mp4/file.mp4"; } else if (command.mode === "idle") { // THE STEWARD (Default) $w("#videobox2").src = "https://video.wixstatic.com/video/1d7bfc_41103d68b9ce4e5184d538843cfe70b4/720p/mp4/file.mp4"; } // TRIGGER AUDIO (If the brain sent a sound link) if (command.audio && command.audio !== "none") { $w("#apolloAudio").src = command.audio; $w("#apolloAudio").play(); } }); });