--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE — Feature matrix (LIGHT) // Reusable on-brand competitive comparison TABLE slide. Different from the // compare template's narrative columns — this is a structured feature matrix. // - Ground: --flux-background (#F9FAF8) // - Flux table in a card wrapper per AGENTS.md // - Header row uppercase grey-300; Kaptio column green checks; alternative dash/X // - NO colored column header eyebrows const headline = 'How we compare'; const features = [ { name: 'Unified product catalogue', kaptio: true, alt: false }, { name: 'Real-time availability', kaptio: true, alt: false }, { name: 'Multi-product packaging', kaptio: true, alt: true }, { name: 'Salesforce-native platform', kaptio: true, alt: false }, { name: 'Automated pricing engine', kaptio: true, alt: false }, { name: 'Edge app ecosystem', kaptio: true, alt: false }, ]; ---

{headline}

{features.map((row, i) => ( ))}
Feature Kaptio Alternative
{row.name} {row.kaptio ? ( ) : ( )} {row.alt ? ( ) : ( )}