/* eslint-disable */ // Section 11 — Partners & Group. // Top half (light): heading + tagline. // Bottom half (dark): two-row logo wall, text-rendered marks in off-white. const PARTNERS = ['Monoline', 'Motion', 'High Tech']; const LogoMark = ({ name }) => (
{ e.currentTarget.style.color = 'var(--color-acid-yellow)'; e.currentTarget.style.letterSpacing = '0.12em'; }} onMouseLeave={(e) => { e.currentTarget.style.color = 'rgba(229,229,222,0.78)'; e.currentTarget.style.letterSpacing = '0.04em'; }} > {name}
); const Partners = () => (
{/* top — light */}
Trusted by
Our partners & group

Combining years of hands-on experience with in-depth knowledge across diverse projects.

{/* bottom — dark logo wall */}
Backed by Unicon Holding
03 partners
{PARTNERS.map((name) => (
))}
); Object.assign(window, { Partners });