// Manar mark: the "Guiding Beam" — Raqeem's segmented signal bars stood // upright into a beacon of light that climbs to the lamp (منار = beacon). // Shares Raqeem's exact palette so the two products read as one family. function ManarMark({ size = 40 }) { const { theme } = useTheme(); const isLight = theme === 'light'; const navy = isLight ? '#24418f' : '#3f66c8'; const lampFill = isLight ? '#31a8d8' : '#ffffff'; const lampCore = isLight ? '#ffffff' : '#147ac1'; return ( ); } function Products() { const { lang, t } = useLang(); const manar = t.products.manar; return (
— {t.products.eyebrow}

{t.products.title}

{t.products.subtitle}

{manar.name}

{manar.tagline}

{manar.description}

{manar.features.map((f, i) => ( {f} ))}
{manar.cta}
); } Object.assign(window, { ManarMark, Products });