diff --git a/src/assets/lang/en/specialOfferTemplate.json b/src/assets/lang/en/specialOfferTemplate.json index d00bc534e..feeda5751 100644 --- a/src/assets/lang/en/specialOfferTemplate.json +++ b/src/assets/lang/en/specialOfferTemplate.json @@ -14,6 +14,7 @@ "description": "Secure cloud storage for less. Claim your special discount today. Access Internxt's award-winning privacy suite with post-quantum encrypted cloud storage and much more.", "subtitle": "Get {{discount}}% off ", "subtitle2": "on all plans", + "lifetimeSubtitle2": "on all lifetime plans", "claimDeal": "Claim deal" }, "ReviewSection": { diff --git a/src/components/partnersTemplate/HeroSection.tsx b/src/components/partnersTemplate/HeroSection.tsx index 761fbb510..253786911 100644 --- a/src/components/partnersTemplate/HeroSection.tsx +++ b/src/components/partnersTemplate/HeroSection.tsx @@ -25,6 +25,7 @@ interface HeroSectionForPartnerProps { isClubic?: boolean; isPcMag?: boolean; isUltimatePlan?: boolean; + specialOffer?: boolean; } export default function HeroSection({ @@ -37,6 +38,7 @@ export default function HeroSection({ isClubic = false, isUltimatePlan = false, isPcMag = false, + specialOffer = false, }: Readonly): JSX.Element { const [currency, setCurrency] = useState('€'); @@ -166,7 +168,7 @@ export default function HeroSection({

{parsePercentText(textContent.subtitle)}

-

{textContent.subtitle2}

+ {specialOffer ?

{textContent.subtitle2}

:

{textContent.lifetimeSubtitle2}

} )}

diff --git a/src/pages/specialoffer.tsx b/src/pages/specialoffer.tsx index b5ba13e1f..6b05255af 100644 --- a/src/pages/specialoffer.tsx +++ b/src/pages/specialoffer.tsx @@ -100,7 +100,12 @@ function SpecialOffer({ )} - +