/* Integrations — real platform logos on a brand band */ function Integrations({ lang, t }) { const platforms = [ { ar: 'سلة', en: 'Salla', logo: 'assets/platforms/salla.webp', scale: 1 }, { ar: 'زد', en: 'Zid', logo: 'assets/platforms/zid.webp', scale: 1.12 }, { ar: 'شوبيفاي', en: 'Shopify', logo: 'assets/platforms/shopify.png', scale: 1.08 }, { ar: 'ووكومرس', en: 'WooCommerce', logo: 'assets/platforms/woocommerce.png', scale: 1.06 }, { ar: 'ربط خاص', en: 'Custom API', logo: 'assets/platforms/api.png', scale: 0.94 }, ]; return (
{t.integrations.eyebrow}

{t.integrations.title_1}{t.integrations.title_em}{t.integrations.title_2}

{t.integrations.sub}

{platforms.map((p, i) => (
{lang
))}
); } window.Integrations = Integrations;