3746 Innes Rd, Orléans, ON K4A 4A9 in the parking lot of Kult the Salon

What Taco Should You Get Today?
function spinTaco() { const options = ["Birria", "Pork ", "Chicken", "Fish", "Pork Belly", "Steak", "Shrimp", "Veggie" ]; const display = document.getElementById('slot-display'); const button = document.getElementById('spin-button'); let counter = 0; button.disabled = true; button.innerText = "SPINNING..."; // This creates the "slot machine" flickering effect const interval = setInterval(() => { display.innerText = options[counter % options.length]; counter++; }, 100); // Stop after 2 seconds and land on a random choice setTimeout(() => { clearInterval(interval); const finalChoice = options[Math.floor(Math.random() * options.length)]; display.innerText = "✨ " + finalChoice + " ✨"; button.disabled = false; button.innerText = "SPIN AGAIN?"; }, 2000); }

Loading your Taco Squad profile... 🌮