/* global React */ const { useEffect, useRef, useState } = React; // ─────────── OFFERS GRID ─────────── function Offers() { const offers = [ { tag: 'Game day cool-down', name: 'Medium ICEE', desc: 'Stay ice-cold through every half. Cherry, blue raspberry — pick your flavor.', currency: '$', price: '1.99', unit: '', pennant: '$1.99', theme: 'icee', art: , }, { tag: 'Afternoon showdowns', name: 'Monster Energy', desc: 'Two cans of ice-cold Monster — extra time, extra fuel.', currency: '$', price: '4.98', unit: '2 for', pennant: '2 / 4.98', theme: 'red', art: , }, { tag: 'Stadium rounds', name: 'Powerade 32oz', desc: 'Three bottles, hydrate the whole squad. Mix & match flavors.', currency: '$', price: '5', unit: '3 for', pennant: '3 / $5', theme: 'yellow', art: , }, ]; return (
Featured · FanZone

Your Offer Lineup

Limited time Available all summer at participating Odessa
and Midland OXXO locations.
{offers.map((o, i) => (
{o.pennant}
FPO — awaiting creative
{o.tag}

{o.name}

{o.desc}

{o.currency}{o.price} {o.unit}
))}
); } function CoffeeIllustration() { return ( {/* steam */} {/* cup */} {/* sleeve */} ANDATTI {/* coffee surface */} ); } function CanIllustration({ label }) { return ( {label} {label} {/* ice cube */} ); } function BottleIllustration() { return ( {[0, 90, 180].map((x, i) => ( POWER ))} ); } function IceeIllustration() { return ( {/* Straw */} {/* Slushie dome body */} {/* Dome highlight streak */} {/* Dome rim ellipse */} {/* Cup body trapezoid */} {/* Left red stripe */} {/* Blue center panel */} {/* Right red stripe */} {/* Cup rim strip */} {/* ICEE text */} ICEE {/* tagline */} Coldest Drink in Town {/* Condensation drops */} {/* Shadow on left edge of cup */} ); } window.Offers = Offers; // ─────────── APP DOWNLOAD BAND ─────────── function AppBand() { return (
); } function PhoneMock() { return ( {/* notch */} {/* content */} FANZONE ANDATTI COFFEE $1 ANY SIZE MONSTER 2-FOR $4.98 POWERADE 3 FOR $5 $4.00 FIND MY OXXO ); } window.AppBand = AppBand; // ─────────── LOCATOR ─────────── function Locator() { return (

See you at OXXO.

Enter your ZIP — we'll find the closest store with FanZone offers.

e.preventDefault()}>
); } window.Locator = Locator; // ─────────── FOOTER ─────────── function Footer() { return ( <>
OXXO

OXXO convenience stores offer fuel, food, and daily essentials with surprising quality, service, and value—bringing a little more happiness to life on the go.

Stay in the FanZone

e.preventDefault()}>
©2026 OXXO · All rights reserved
); } window.Footer = Footer;