// v3 bottom sections — gifting (date espresso), bestsellers, FAQ, footer const { useState: useStateB } = React; /* ====== Gifting — DEEP DATE BROWN (elegant) ====== */ function Gifting() { const occasions = [ { name:'Personal', body:'Thoughtful selections for family visits, host gifts and everyday gestures that feel a little more special.' }, { name:'Festive', body:'Elegant assortments for celebration tables, shared moments and seasonal generosity.' }, { name:'Hospitality', body:'Beautifully presented dates, nuts and dry fruits for coffee service, guest trays and warm hosting.' }, { name:'Corporate', body:'Premium boxes and curated assortments designed to leave a refined, lasting impression.' }, { name:'Special', body:'Elevated gift formats for milestones, events and moments worth marking with care.' }, ]; const [active, setActive] = useStateB(0); return (
{/* huge gold serif word as background mark */}
Gifting
Premium gift box of nuts and dry fruits
Corporate Gifting
50+ boxes · brand-stamped
From
AED 145
Hand-tied ribbon included
{/* floating accent nuts */}
Premium Gifting

Gifting,
ready for any occasion.

From personal thank-yous and festive tables to hospitality trays and corporate gestures, every gift format is designed to feel generous, considered, and easy to choose.

{occasions.map((o, i)=>{ const open = active===i; return ( ); })}
); } /* ====== Bestsellers ====== */ // const products = [ // { name:'Mamra Almonds, Premium', cat:'Nuts', weight:'250 g', price:64, was:74, badge:'Bestseller', img:'assets/poster-sunlight.png', objPos:'30% 70%' }, // { name:'Saffron-Honey Soaked Mix', cat:'Signature', weight:'400 g', price:128, badge:'Signature', img:'assets/poster-jar.png', objPos:'50% 65%' }, // { name:'Pistachio Kunafa Chocolate', cat:'Chocolates', weight:'200 g', price:54, badge:'New Season', img:'assets/poster-pistachio.png', objPos:'68% 55%' }, // { name:'Premium Dry Fruits Box', cat:'Gifting', weight:'600 g', price:185, badge:'Gift', img:'assets/poster-gift.png', objPos:'50% 70%' }, // { name:'Roasted Cashews, Lightly Salted', cat:'Nuts', weight:'300 g', price:48, img:'assets/poster-premium.png', objPos:'72% 60%' }, // { name:'Medjool Dates, Royal', cat:'Dates', weight:'500 g', price:72, badge:'Bestseller', img:'assets/poster-collection.png', objPos:'52% 60%' }, // ]; // function Bestsellers() { // const [filter, setFilter] = useStateB('All'); // const tabs = ['All','Bestseller','Signature','New Season','Gifting']; // const filtered = filter==='All' ? products : products.filter(p => (p.badge||p.cat)===filter || p.cat===filter); // return ( //
//
//
// // Bestsellers //

// Favorites returning to UAE pantries. //

//
// //
// {tabs.map(t => ( // // ))} //
//
//
//
// {filtered.slice(0,6).map((p, i)=>( // // ))} //
//
// View All Products //
//
//
// ); // } // function ProductCard({p}) { // return ( //
//
// {p.name} // {p.badge && ( //
{p.badge}
// )} // //
{p.weight}
//
//
//
{p.cat}
//
// {p.name} //
//
//
// AED {p.price} // {p.was && AED {p.was}} //
// //
//
// //
// ); // } /* ====== FAQ — warm paper ====== */ function FAQ() { const faqs = [ { q:'How fresh are Nuts Hub products?', a:'Stock is rotated frequently and packed in small batches at our Abu Dhabi facility. Sachets and pouches are nitrogen-sealed where appropriate to help protect freshness from shelf to serving.' }, { q:'Do you deliver across the UAE?', a:'Yes — across all seven Emirates, with complimentary delivery on orders over AED 150. Temperature-aware handling is used for chocolate items during summer months.' }, { q:'Can I customize a corporate gifting order?', a:'Absolutely. We offer custom corporate gifting from 50 boxes upward — including brand-stamped boxes, custom assortments, hand-tied ribbon details, and dedicated event coordination.' }, { q:'Are your packs suitable for school lunchboxes?', a:'School packs are portion-friendly with clear ingredient and allergen visibility on every pouch. No artificial colors, and many school-friendly mixes are nut-free where labelled.' }, { q:'What pack sizes are available?', a:'Five formats: small sachets (20–35g), daily packs (80–150g), family packs (250–500g), bulk packs (1kg and above), and curated premium gift boxes.' }, { q:'Where are your products sourced?', a:'Each category is selected for flavor and consistency at the origin — almonds from California, pistachios from Iran and California, dates from Saudi Arabia, the UAE and Tunisia, and saffron from Iran.' }, ]; const [open, setOpen] = useStateB(0); return (
Questions, Answered

Everything you might want to know.

{faqs.map((f, i)=>{ const isOpen = open===i; return (
{f.a}
); })}
Still curious? { e.preventDefault(); window.navigateTo('maintenance'); }} style={{color:'var(--gold-deep)', fontWeight:600, textDecoration:'none'}}> Chat with our pantry team — usually replied within an hour during UAE business hours.
); } /* ====== Footer — KEEP NAVY as contrast anchor ====== */ function Footer() { const cols = [ { h:'Shop', items:['Nuts','Dry Fruits','Dates','Spices','Snack Mixes','Chocolates','New Arrivals','Bestsellers'] }, { h:'By Need', items:['School Packs','Office Packs','Family Packs','Bulk Packs','Lunchbox Sachets','Trail Mixes'] }, { h:'Gifting', items:['Gift Boxes','Festive Selections','Hospitality Trays','Corporate Gifting','Custom Orders'] }, { h:'Support', items:['Contact','Shipping & Delivery','Returns','FAQ','Allergen Info','Storage Tips'] }, ]; return ( ); } Object.assign(window, { Gifting, FAQ, Footer });