feat(pricing): price Business annually and state its seat minimum - #19
Merged
Conversation
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.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Site half of VoltiusApp/server#21.
Annual pricing for Business
Business was the only tier without an annual discount — Pro saves 22%, Teams 17%, Business showed a flat $30. Annual is genuinely purchasable now (the
billing_period/intervalmismatch is fixed and deployed), so there is no reason for the outlier:Seat minimum stated up front
Both per-seat plans enforce a 3-seat floor server-side (422 below it). The Business card and the Terms now say so instead of leaving a buyer to find out at checkout. Teams already said it in its description; the Terms now says it for both.
Still gated
The card keeps
comingSoon. The LemonSqueezy variants do not exist yet, and the server answers 503 for an unconfigured variant — publishing a live CTA would produce a broken checkout, which is what this whole sequence has been fixing. Flipping it is one line onceLS_VARIANT_BUSINESS_MONTHLYand_YEARLYare set and the server is redeployed.Deliberately not included
The Teams Terms entry still does not claim a 14-day free trial. That only becomes true when the free-trial box is ticked on the Teams variants in LemonSqueezy; asserting it beforehand would repeat the defect this branch's predecessor removed. One line to add once the box is ticked.
tsc --noEmitexit 0.