zen: update discount copy on lander

This commit is contained in:
Frank
2026-03-11 04:10:44 -04:00
parent 9e6c4a01aa
commit 0b0ad5de99
19 changed files with 192 additions and 155 deletions
+8 -1
View File
@@ -320,7 +320,14 @@ export default function Home() {
>
{(part) => {
if (part === "{{text}}") return <span>{i18n.t("go.cta.text")}</span>
if (part === "{{price}}") return <span data-slot="cta-price">{i18n.t("go.cta.price")}</span>
if (part === "{{price}}") {
return (
<span data-slot="cta-price">
<span data-slot="cta-price-old">{i18n.t("go.cta.price")}</span>
<span data-slot="cta-price-new">{i18n.t("go.cta.promo")}</span>
</span>
)
}
return part
}}
</For>