/** * Insight Box Component * * Visual anchor for key takeaways with yellow left border. * Used to highlight important insights in the manifesto content. */ interface InsightBoxProps { children: React.ReactNode variant?: 'default' | 'highlight' } export function InsightBox({ children, variant = 'default' }: InsightBoxProps) { const borderColor = variant === 'highlight' ? '#D97706' : '#F59E0B' return (
{children}