--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE — Global presence (LIGHT) // Reusable on-brand global footprint slide. Simplified from // KaptioGlobalPresenceSlide — map technique only, pure static Astro. // - Ground: --flux-background (#F9FAF8) // - Centered headline + subtitle about follow-the-sun // - Dotted world map using /slide-examples/world-map.svg mask on LIGHT ground // - Regional markers with --flux-primary-400 dots + labels // - Optional regional banner pills at top using Flux badge tints // - Kaptio logo (dark) centered near the bottom const headline = 'Global presence'; const subtitle = 'Follow-the-sun support model across AMER, EMEA, and APAC.'; const worldMap = '/slide-examples/world-map.svg'; const regions = [ { label: 'AMER', tint: 'var(--flux-primary-100)' }, { label: 'EMEA', tint: 'var(--flux-green-200)' }, { label: 'APAC', tint: 'var(--flux-blue-200)' }, ]; const markers = [ { left: '18%', top: '38%', label: 'AMER' }, { left: '48%', top: '32%', label: 'EMEA' }, { left: '78%', top: '58%', label: 'APAC' }, ]; ---

{headline}

{subtitle}

{regions.map((region) => ( {region.label} ))}
{markers.map((marker) => (
{marker.label}
))}