/** * Statement Section Component * * Full-width section with dark background for impactful statements. * Used to highlight key messages in the manifesto. */ import type { StatementSection as StatementSectionType } from '@/content/schemas/manifesto' interface StatementSectionProps { section: StatementSectionType } export function StatementSection({ section }: StatementSectionProps) { const isDark = section.variant === 'dark' || !section.variant return (

{section.heading}

{section.content}

) }