Skip to content

Commit a2f561f

Browse files
committed
Update team plan pricing (#6818)
# Update Team Plan Pricing This PR updates the pricing for all team plans: - **Starter**: Increased from $5 to $9 - **Growth**: Increased from $75 to $79 - **Accelerate**: Decreased from $250 to $249 - **Scale**: Increased from $500 to $549
1 parent 72a4ac5 commit a2f561f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/dashboard/src/utils/pricing.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const TEAM_PLANS: Record<
1818
}
1919
> = {
2020
starter: {
21-
price: 5,
21+
price: 9,
2222
title: "Starter",
2323
subTitle: null,
2424
trialPeriodDays: 0,
@@ -34,7 +34,7 @@ export const TEAM_PLANS: Record<
3434
],
3535
},
3636
growth: {
37-
price: 75,
37+
price: 79,
3838
title: "Growth",
3939
subTitle: "Everything in Starter, plus:",
4040
trialPeriodDays: 0,
@@ -48,7 +48,7 @@ export const TEAM_PLANS: Record<
4848
],
4949
},
5050
accelerate: {
51-
price: 250,
51+
price: 249,
5252
title: "Accelerate",
5353
subTitle: "Everything in Growth, plus:",
5454
trialPeriodDays: 0,
@@ -62,7 +62,7 @@ export const TEAM_PLANS: Record<
6262
],
6363
},
6464
scale: {
65-
price: 500,
65+
price: 549,
6666
title: "Scale",
6767
description: "For large organizations with custom needs.",
6868
subTitle: "Everything in Accelerate, plus:",

0 commit comments

Comments
 (0)