// home.jsx — simpler landing page focused on essentials function Home({ lang, setRoute, openPDP }) { const t = (ar, en) => lang === 'ar' ? ar : en; const [activeFamily, setActiveFamily] = React.useState('all'); const featured = PRODUCTS.filter(p => p.tag_ar).slice(0, 6); const filteredFamily = activeFamily === 'all' ? PRODUCTS.slice(0, 8) : PRODUCTS.filter(p => p.family === activeFamily).slice(0, 8); return ( <> {/* HERO — simpler, calmer */}
{t('عطور هندية مختارة', 'Curated Indian perfumery')}

{t('عطر يحملك', 'A scent that')}
{t('بعيداً', 'carries you')} {t('— روائح من قلب الهند، مقطّرة في دبي.', '— scents from the heart of India, decanted in Dubai.')}

{t('شحن مجاني فوق 350 درهم', 'Free shipping over AED 350')}
{t('توصيل خلال 48 ساعة', '48-hour delivery')}
{t('عينة مجانية مع كل طلب', 'Free sample with every order')}
N°01
{t('عطر الموسم', 'Edition of the season')}
ISTABRAQ
BOMBAY NIGHTS
EXT. PARFUM · 50ml
Bombay Nights
AED 720
{/* FAMILY CHIPS — simple categorical browse */}
{t('تسوّق حسب العائلة العطرية', 'Shop by scent family')}

{t('اختر عالمك', 'Find your world')}

setRoute('shop')}> {t('عرض الكل', 'View all')}
{SCENT_FAMILIES.map(f => ( ))}
{filteredFamily.slice(0, 8).map(p => )}
{/* FEATURED — the season's picks */}
{t('مختارات الموسم', 'Season picks')}

{t('من الموسم', 'From the season')}

{featured.map(p => )}
{/* MANIFESTO — compact */}
{t('بيان', 'Manifesto')}

{t('من العطّار إلى يدك', 'From attar to hand')}

{t('نختار كل قطرة من بيوت عطور عائلية صغيرة في الهند — ميسور، آسام، كشمير، ولكنو. تُعبّأ يدوياً، تُختم بشمع، وتصل خلال 48 ساعة في الإمارات.', 'We source each drop from small family attar houses across India — Mysore, Assam, Kashmir, Lucknow. Hand-decanted, wax-sealed, delivered within 48 hours across the UAE.')}

); } function ProductCard({ product, lang, onOpen, onAddToCart }) { const fam = SCENT_FAMILIES.find(f => f.id === product.family); const btnRef = React.useRef(); return (
onOpen(product)}>
{product.tag_ar &&
{lang === 'ar' ? product.tag_ar : product.tag_en}
} {onAddToCart && ( )}
{lang === 'ar' ? product.name_ar : product.name_en}
{lang === 'ar' ? fam.ar : fam.en} · {product.concentration}
{product.price} AED
/ 50ml
); } window.Home = Home; window.ProductCard = ProductCard;