// v3 Hero — warm cream with floating nuts, bowl-breathe, conversion CTAs
function Hero() {
return (
{/* faint pattern */}
{/* floating nut particles in bg */}
{/* corner ornament */}
Premium Pantry · UAE
Premium Nuts,
Dry Fruits, Dates
& Spices.
From quick snack sachets and lunchbox packs to family pouches,
bulk essentials, and elegant gift boxes — one premium destination for everyday living.
);
}
function HeroVisual() {
return (
{/* breathing bowl */}
{/* slow rotating dashed ring */}
{/* solid hairline ring */}
{/* floating nuts orbiting */}
{/* Signature chip */}
Signature Jar
Saffron-Honey
400g · limited stock
{/* Trust chip */}
{['#7E5832','#B88C4E','#3A4F8A','#A5733B'].map((c,i)=>(
))}
{/* free delivery sticker */}
Free Delivery
Over AED 150
);
}
/* ====== Trust strip ====== */
function TrustStrip() {
const items = [
[, 'Hand-selected at origin'],
[, 'Hygienically sealed packs'],
[, 'Honest pack weights'],
[, 'UAE-wide delivery'],
[, 'Gift-ready presentation'],
];
return (
{items.map(([ic, lbl])=>(
{ic}
{lbl}
))}
);
}
Object.assign(window, { Hero, HeroVisual, TrustStrip });