Skip to content

Commit e8efaff

Browse files
committed
Increase subscription credits in tier 100 by 20%, tier 500 by 5%
1 parent e6cff22 commit e8efaff

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

common/src/constants/subscription-plans.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ export interface TierConfig {
1010
export const SUBSCRIPTION_TIERS = {
1111
100: {
1212
monthlyPrice: 100,
13-
creditsPerBlock: 350,
13+
creditsPerBlock: 420,
1414
blockDurationHours: 5,
15-
weeklyCreditsLimit: 3500,
15+
weeklyCreditsLimit: 4200,
1616
},
1717
200: {
1818
monthlyPrice: 200,
@@ -22,9 +22,9 @@ export const SUBSCRIPTION_TIERS = {
2222
},
2323
500: {
2424
monthlyPrice: 500,
25-
creditsPerBlock: 2800,
25+
creditsPerBlock: 2940,
2626
blockDurationHours: 5,
27-
weeklyCreditsLimit: 28000,
27+
weeklyCreditsLimit: 29400,
2828
},
2929
} as const satisfies Record<number, TierConfig>
3030

web/src/app/pricing/pricing-client.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ const CREDITS_PER_DOLLAR = Object.fromEntries(
4040

4141
const USAGE_MULTIPLIER: Record<number, string> = {
4242
100: '1×',
43-
200: '3×',
44-
500: '8×',
43+
200: '2.5×',
44+
500: '7×',
4545
}
4646

4747
type ButtonAction = 'subscribe' | 'current' | 'upgrade' | 'downgrade'

0 commit comments

Comments
 (0)