// 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
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 (
);
})}
// );
// }
/* ====== 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 (