/* 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 (
);
}
function CanIllustration({ label }) {
return (
);
}
function BottleIllustration() {
return (
);
}
function IceeIllustration() {
return (
);
}
window.Offers = Offers;
// ─────────── APP DOWNLOAD BAND ───────────
function AppBand() {
return (
⚽ OXXO Rewards
Want to Score More Deals?
Download the Easy Coins app to save on snacks, fuel and more.
);
}
function PhoneMock() {
return (
);
}
window.AppBand = AppBand;
// ─────────── LOCATOR ───────────
function Locator() {
return (
See you at OXXO.
Enter your ZIP — we'll find the closest store with FanZone offers.
);
}
window.Locator = Locator;
// ─────────── FOOTER ───────────
function Footer() {
return (
<>
>
);
}
window.Footer = Footer;