/** * WorkStyleSlide.tsx * Slide 5: How They Work / Capability Pattern. * Bulleted operating philosophy with accent marks. */ import React from 'react'; import type { SlideContent } from '../../schema/carouselSchema'; import type { Theme } from '../themes'; interface WorkStyleSlideProps { slide: SlideContent; theme: Theme; } export function WorkStyleSlide({ slide, theme }: WorkStyleSlideProps): React.ReactElement { const { bgColor, accentColor, textColor, subtextColor, fontFamily, cardBg, borderColor } = theme; const bullets = slide.bullets ?? []; return (
{slide.subtitle}
)} {/* Capability bullets */}