Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update: improve descriptions for billing tiers #1630

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/lib/stores/billing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export type TierData = {

export const tierFree: TierData = {
name: 'Free',
description: 'For personal hobby projects of small scale and students.'
description: 'A great fit for passion projects and small applications.'
};

export const tierGitHubEducation: TierData = {
Expand All @@ -185,11 +185,13 @@ export const tierGitHubEducation: TierData = {

export const tierPro: TierData = {
name: 'Pro',
description: 'For pro developers and production projects that need the ability to scale.'
description:
'For production applications that need powerful functionality and resources to scale.'
};
export const tierScale: TierData = {
name: 'Scale',
description: 'For scaling teams and agencies that need dedicated support.'
description:
'For teams that handle more complex and large projects and need more control and support.'
};

export const tierCustom: TierData = {
Expand Down
Loading