diff --git a/components/checkout/PlanSummary.tsx b/components/checkout/PlanSummary.tsx index aa11707..e8fbc20 100644 --- a/components/checkout/PlanSummary.tsx +++ b/components/checkout/PlanSummary.tsx @@ -186,20 +186,7 @@ export default function PlanSummary({ plan, interval, limit, country, vatId, onC {/* Price breakdown */}
- {!country ? ( -
- - €{isYearly ? (baseDisplay / 12).toFixed(2) : baseDisplay.toFixed(0)} - - /mo - excl. VAT · {tierLabel} pageviews - {isYearly && ( - - Save 1 month - - )} -
- ) : vatLoading && !vatResult ? ( + {vatLoading && !vatResult ? (
Calculating VAT... @@ -229,7 +216,25 @@ export default function PlanSummary({ plan, interval, limit, country, vatId, onC

€{(parseFloat(vatResult.total_amount) / 12).toFixed(2)}/mo

)}
- ) : null} + ) : ( +
+
+ Subtotal ({tierLabel} pageviews) + €{isYearly ? baseDisplay.toFixed(2) : baseDisplay.toFixed(2)} +
+
+ VAT + Select country +
+
+ Total {isYearly ? '/year' : '/mo'} excl. VAT + €{isYearly ? baseDisplay.toFixed(2) : baseDisplay.toFixed(2)} +
+ {isYearly && ( +

€{(baseDisplay / 12).toFixed(2)}/mo · Save 1 month

+ )} +
+ )}
)