(null); const prizes = [ "$25 Off Next Visit", "Free Wiper Blades", "Free Tire Rotation", "10% Off Labor (Up to $100)", "Free Car Wash", "Better Luck Next Time", ]; const spinWheel = () => { if (spinning) return; setSpinning(true); setResult(null); setTimeout(() => { const prize = prizes[Math.floor(Math.random() * prizes.length)]; setResult(prize); setSpinning(false); }, 2500); }; const logoSrc = EMBEDDED_LOGO && EMBEDDED_LOGO.startsWith("data:image") ? EMBEDDED_LOGO : "/images/gramenzi-logo.png"; // fallback if you prefer hosting the file return (
{/* Logo Section */}
Gramenzi Auto Services Logo

Black Friday Spin-to-Win Event 🎯

Book any service during our Black Friday Week and spin the wheel for instant prizes! Every spin wins — no gimmicks.

{/* Pointer Triangle */}
{/* Wheel */} {spinning ? "Spinning..." : "🎡 Tap to Spin"} {result && ( 🎉 You won: {result} )}

*Valid for Black Friday week only. One spin per customer per visit.

*Offer valid while supplies last. Terms apply.

); }