From 0150762b7dafedb2a13f5b7b1c268ede9a157fba Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Fri, 30 Jan 2026 21:29:47 +0100 Subject: [PATCH] refactor: update pricing display in PricingSection component to reflect yearly total and improve monthly breakdown comparison --- components/PricingSection.tsx | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/components/PricingSection.tsx b/components/PricingSection.tsx index a08ca73..4a947b8 100644 --- a/components/PricingSection.tsx +++ b/components/PricingSection.tsx @@ -186,26 +186,21 @@ export default function PricingSection() { isYearly ? ( // YEARLY VIEW
- {/* 1. Effective Monthly Price */} + {/* 1. Big Price = Yearly Total */}
- €{priceDetails.effectiveMonthly} + €{priceDetails.yearlyTotal} - /mo + /year
- {/* 2. Yearly Total */} -

- Billed €{priceDetails.yearlyTotal} yearly -

- - {/* 3. Comparison (Original -> Discounted) */} -
+ {/* 2. Subtext = Monthly Breakdown Comparison */} +
€{priceDetails.baseMonthly}/mo - - → €{priceDetails.effectiveMonthly}/mo + + €{priceDetails.effectiveMonthly}/mo