// Page: About function AboutPage({ lang, navigate }) { const t = I18N[lang]; useReveal(); useEffect(() => { window.scrollTo(0, 0); }, []); return (
{t.about.eyebrow}

{lang === 'ar' ? <>أناقة بسيطة
بروح أنثوية : <>Simple elegance
with a feminine soul }

{t.about.p1}

{t.about.p2}

{t.about.values.map((v, i) => (
— 0{i+1} —

{v.t}

{v.d}

))}
{t.about.visionTitle}

"{t.about.vision}"

); } // Page: Contact function ContactPage({ lang, navigate }) { const t = I18N[lang]; useReveal(); useEffect(() => { window.scrollTo(0, 0); }, []); const waMsg = lang === 'ar' ? 'مرحباً، أرغب بالاستفسار' : 'Hi, I want to ask'; return (

{t.contact.title}

{t.contact.sub}

{t.contact.whatsapp}

{t.contact.whatsappDesc}

{t.contact.whatsappCta}

{t.contact.ig}

{t.contact.igDesc} — @hallo.banat

{t.contact.igCta}

{t.contact.email}

{t.contact.emailDesc} — info@hillobanat.com

info@hillobanat.com

{t.contact.hoursTitle}

    {t.contact.hours.map((h, i) =>
  • {h}
  • )}
); } // Page: Wishlist function WishlistPage({ lang, navigate, wishlist, toggleWish, onWaOrder, tweaks }) { const t = I18N[lang]; useEffect(() => { window.scrollTo(0, 0); }, []); const items = PRODUCTS.filter(p => wishlist.includes(p.id)); return (

{t.nav.wishlist}

{lang === 'ar' ? `${items.length} قطعة مفضلة` : `${items.length} favorite items`}

{items.length === 0 ? (

{lang === 'ar' ? 'لم تضيفي أي منتج للمفضلة بعد' : 'No favorites yet'}

) : (
{items.map(p => ( navigate('product', { id: pr.id })} wishlist={wishlist} toggleWish={toggleWish} onWaOrder={onWaOrder}/> ))}
)}
); } Object.assign(window, { AboutPage, ContactPage, WishlistPage });