This commit is contained in:
2026-05-06 11:49:49 -04:00
parent 9d61851a75
commit 7cb5c30b71
11 changed files with 58 additions and 32 deletions

View File

@@ -25,14 +25,13 @@ export function CtaSection({ block }: { block: CtaSectionBlock }) {
{t(block.title)}
</h2>
{block.subtitle && (
<p
<div
className={cn(
"mt-4 text-base sm:text-lg leading-relaxed",
isPrimary ? "text-primary-foreground/85" : "text-foreground/80",
)}
>
{t(block.subtitle)}
</p>
dangerouslySetInnerHTML={{ __html: t(block.subtitle) }}
/>
)}
<Button
asChild