// Services, Corporate, Story, Stores, Contact pages const { useState: useStateS, useEffect: useEffectS, useMemo: useMemoS } = React; // ===== SERVICES ===== function ServicesPage() { const { t, lang } = window.useStore(); const [form, setForm] = useStateS({ name:"", phone:"", date:"", area:"", message:"" }); const [sent, setSent] = useStateS(false); return (
{lang === "ar" ? "الرئيسية" : "Home"} / {t("services")}
― {t("services_eyebrow")}

{t("services_title")}

{lang === "ar" ? "نلفّ الهدايا منذ 2013. اختر أن تأتي إلينا — أو دعنا نأتي إليك." : "We've been wrapping gifts since 2013. Walk in, or let us come to you."}

{/* In-store */}
― 01 / Walk-in

{t("svc_in_store_title")}

{t("in_store_wrapping_body")}

01

{lang === "ar" ? "تعال إلى أحد متاجرنا" : "Visit any MASKA store"}

{lang === "ar" ? "خمسة مواقع في دبي — لا حاجة لحجز موعد." : "Five locations across Dubai — no appointment needed."}

02

{lang === "ar" ? "اختر القماش والشريط" : "Choose fabric & ribbon"}

{lang === "ar" ? "ساعدك أحد مغلفي ماسكا على اختيار اللوحة المناسبة للمناسبة." : "A MASKA wrapper helps you choose the palette for the occasion."}

03

{lang === "ar" ? "ملفوفة في عشر دقائق" : "Wrapped in ten minutes"}

{lang === "ar" ? "نلفّها بأيدينا أمامك ونعقد العقدة الأخيرة." : "Wrapped by hand in front of you — final knot included."}

{/* Door to door */}
― 02 / Door-to-Door

{t("svc_door_title")}

{lang === "ar" ? "لا وقت لزيارة المتجر؟ نلتقط هديتك من بابك، نلفّها بأيدينا، ونوصلها إلى المكان الذي تختاره — في أي مكان في دبي." : "No time to drop by the store? We collect your gift from your doorstep, wrap it by hand and deliver it to wherever you choose — anywhere in Dubai."}

{[ ["01", t("svc_step_1"), t("svc_step_1_desc")], ["02", t("svc_step_2"), t("svc_step_2_desc")], ["03", t("svc_step_3"), t("svc_step_3_desc")], ].map(([n, title, desc]) => (
{n}

{title}

{desc}

))}

{t("book_now")}

{lang === "ar" ? "نتواصل معك خلال ساعة من العمل لتأكيد الموعد." : "We confirm your slot within one business hour."}

{sent ? (

{lang === "ar" ? "تم استلام طلبك" : "Booking received"}

{lang === "ar" ? "سنتصل بك قريباً." : "We'll call you shortly."}

) : (
{ e.preventDefault(); setSent(true); }} style={{marginTop: 20}}>
setForm({...form, name: e.target.value})}/>
setForm({...form, phone: e.target.value})} placeholder="+971..."/>
setForm({...form, area: e.target.value})} placeholder={lang === "ar" ? "جميرا، الخوانيج..." : "Jumeirah, Mirdif..."}/>
setForm({...form, date: e.target.value})}/>