interface StatementHeadingProps { /** Leading line, rendered in the primary text colour. */ headline: string /** Continuation line, rendered muted so the first line reads as the claim. */ headlineMuted: string } /** * Two-line display statement ("Logos is not for everyone. / Logos is for * people who are done waiting for permission.") shared by the home social * proof section and the /build-the-parallel page. * * Deliberately renders only the `

`: the surrounding flex wrapper and CTA * row differ per page, so each caller owns its own spacing. */ export default function StatementHeading({ headline, headlineMuted, }: StatementHeadingProps) { return (

{headline} {headlineMuted}

) }