--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE — Logo strip (LIGHT) // Reusable on-brand social proof / customer logo grid. Simplified clone-able // version of the client-ecosystem pattern — do NOT import FitEcosystemSlide. // - Ground: --flux-background (#F9FAF8) // - ONE optional muted grey kicker, bold headline, one light support line // - Grid of logo placeholder cells (no colored top borders, no coral eyebrows) // - Kaptio logo (dark) centered near the bottom const kicker = 'Trusted by'; const headline = 'Global customers'; const support = 'Tour operators and DMCs across six continents rely on Kaptio.'; const logoCount = 8; ---

{kicker}

{headline}

{support}

{Array.from({ length: logoCount }).map((_, i) => (
Logo
))}