diff --git a/apps/website/components/pricing.tsx b/apps/website/components/pricing.tsx index 6869664..3083eff 100644 --- a/apps/website/components/pricing.tsx +++ b/apps/website/components/pricing.tsx @@ -77,7 +77,8 @@ export function Pricing() { const [openPartnerModal, setOpenPartnerModal] = useState(false); const hobbyMonthlyPrice = 4.5; - const hobbyAnnualPrice = hobbyMonthlyPrice * 12 * 0.8; // 20% discount + const hobbyAnnualTotal = hobbyMonthlyPrice * 12 * 0.8; // 20% discount, total per year + const hobbyAnnualPerMonth = hobbyAnnualTotal / 12; const startupBaseMonthly = 15; const startupBaseAnnual = startupBaseMonthly * 12 * 0.8; @@ -151,16 +152,15 @@ export function Pricing() { $ {isAnnual - ? hobbyAnnualPrice.toFixed(2) + ? hobbyAnnualPerMonth.toFixed(2) : hobbyMonthlyPrice.toFixed(2)} /mo - {isAnnual && ( - - per server - - )} - {!isAnnual && ( + {isAnnual ? ( +

+ ${hobbyAnnualTotal.toFixed(2)}/year per server +

+ ) : ( per server (add as many servers as you'd like for $4.50/mo) @@ -209,6 +209,11 @@ export function Pricing() { : startupBaseMonthly.toFixed(0)} /mo + {isAnnual ? ( +

+ ${startupBaseAnnual.toFixed(0)}/year +

+ ) : null}

Add more servers as you'd like for $4.50/mo