From cb7650e5259062d797d9b20d6afe1a704da00f7a Mon Sep 17 00:00:00 2001 From: Arman Date: Thu, 23 Jan 2025 15:43:39 +0100 Subject: [PATCH] update: improve descriptions for billing tiers --- src/lib/stores/billing.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/lib/stores/billing.ts b/src/lib/stores/billing.ts index 9b42358d1..a5b00f43e 100644 --- a/src/lib/stores/billing.ts +++ b/src/lib/stores/billing.ts @@ -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 = { @@ -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 = {