From 75dc213ecfdbef76a6b4747dba54cefec6a962c8 Mon Sep 17 00:00:00 2001 From: kipavy Date: Sat, 12 Sep 2026 22:14:40 +0000 Subject: [PATCH] feat(pricing): price Business annually and state its seat minimum MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Business was the only tier with no annual discount — Pro saves 22% and Teams 17%, while Business showed a flat $30. Annual is now actually purchasable, so it gets the same 17% as Teams: $25/user/month billed annually, $30 monthly. Both per-seat plans enforce a 3-seat floor server-side, so the card and the Terms now say so rather than leaving buyers to discover it at checkout. The card stays "Coming soon": the LemonSqueezy variants do not exist yet, and the server returns 503 for an unconfigured variant. Flipping it is a one-line change once LS_VARIANT_BUSINESS_MONTHLY and _YEARLY are set and deployed. --- landing/app/components/Pricing.tsx | 7 +++++-- landing/app/terms/page.tsx | 5 +++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/landing/app/components/Pricing.tsx b/landing/app/components/Pricing.tsx index b461a54..cad01af 100644 --- a/landing/app/components/Pricing.tsx +++ b/landing/app/components/Pricing.tsx @@ -68,9 +68,12 @@ const plans = [ }, { name: "Business", - price: "$30", + price: "$25", period: "/ user / month", - desc: "Commercial license, advanced collaboration, and dedicated support for organizations.", + billingNote: "billed annually", + monthlyOption: "or $30 billed monthly", + savings: "Save 17% with annual billing", + desc: "Commercial license, advanced collaboration, and dedicated support for organizations (3-user minimum).", highlight: false, comingSoon: true, cta: "Coming soon", diff --git a/landing/app/terms/page.tsx b/landing/app/terms/page.tsx index 8426e04..cf2bf3f 100644 --- a/landing/app/terms/page.tsx +++ b/landing/app/terms/page.tsx @@ -68,8 +68,9 @@ export default function TermsPage() { $18/user/month (billed monthly), billed per seat with a 3-user minimum.
  • - Business — $30/user/month. Not yet available - for purchase. Contact us for custom contracts and self-hosted deployment. + Business — $25/user/month (billed annually) + or $30/user/month (billed monthly), billed per seat with a 3-user minimum. Not yet + available for purchase. Contact us for custom contracts and self-hosted deployment.