Skip to content

Commit

Permalink
Merge pull request #1630 from appwrite/chore-fix-plans-copy
Browse files Browse the repository at this point in the history
update: improve descriptions for billing tiers
  • Loading branch information
ArmanNik authored Jan 23, 2025
2 parents ddd131f + cb7650e commit e4824cc
Showing 1 changed file with 5 additions and 3 deletions.
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

0 comments on commit e4824cc

Please sign in to comment.