// Three "rhythm-breaker" sections that sit between main blocks: // 1. StatBand — big numbers strip (between Hero and Cases) // 2. ClientQuote — full-width customer quote (between Cases and Advantages) // 3. TrustLogos — partner/client logos row (between StatBand and Cases) const D_X = (typeof window !== 'undefined' && window.__SwappTokens) || {}; // ─── 1. STAT BAND ──────────────────────────────────────────── function StatBand() { const D = D_X; const stats = [ { num: '1 000+', label: 'инфлюенсеров', sub: 'в каталоге' }, { num: '40', label: 'параметров', sub: 'аудит каждого' }, { num: '7', label: 'категорий', sub: 'от еды до туризма' }, { num: '10 мин', label: 'до запуска', sub: 'от регистрации' }, ]; return ( {stats.map((s, i) => ( {s.num} {s.label} {s.sub} ))} ); } // ─── 2. CLIENT QUOTE ───────────────────────────────────────── function ClientQuote() { const D = D_X; return ( {/* subtle radial accent */} {/* Big quotation mark */} “ {/* Quote */} За 7 дней мы получили 138 000 просмотров и +38% к среднему чеку. Я не верил, что всё можно запустить за вечер без агентства — но получилось. {/* Attribution */} {/* Avatar */} Алишер Касенов Маркетолог · сеть бургерных «КАМИН» ); } // ─── 3. TRUST LOGOS ────────────────────────────────────────── // Real client logos: КАМИН/GYRO as inline SVGs (currentColor), ROCKBROS // as invert-filtered raster, Favor as CSS-masked solid fill. const KaminLogoSVG_D = ( ); const GyroLogoSVG_D = ( ); function TrustLogos() { const D = D_X; const items = [ { kind: 'svg', node: KaminLogoSVG_D, key: 'kamin' }, { kind: 'svg', node: GyroLogoSVG_D, key: 'gyro' }, { kind: 'img', src: 'assets/rockbros-logo.webp', alt: 'ROCKBROS', height: 52, key: 'rockbros' }, { kind: 'mask', src: 'assets/favor-logo.png', alt: 'Favor Restaurant', height: 56, ratio: 1177/613, key: 'favor' }, { kind: 'text', label: 'Aurora', font: 'Georgia, serif', weight: 600, transform: 'none', letterSpacing: '-0.02em', style: 'italic' }, { kind: 'text', label: 'GOODS', font: 'Manrope', weight: 800, transform: 'uppercase', letterSpacing: '0.2em' }, { kind: 'text', label: 'Halyk×', font: 'Manrope', weight: 700, transform: 'none', letterSpacing: '-0.01em' }, { kind: 'text', label: 'BAITEREK', font: 'Manrope', weight: 800, transform: 'uppercase', letterSpacing: '0.05em' }, { kind: 'text', label: 'choco·', font: 'Manrope', weight: 700, transform: 'lowercase', letterSpacing: '-0.02em' }, ]; return ( Нам доверяют {items.map((l) => { if (l.kind === 'svg') { return {l.node}; } if (l.kind === 'img') { return ; } if (l.kind === 'mask') { return ; } return ( {l.label} ); })} ); } Object.assign(window, { StatBand, ClientQuote, TrustLogos });
За 7 дней мы получили 138 000 просмотров и +38% к среднему чеку. Я не верил, что всё можно запустить за вечер без агентства — но получилось.