feat: add new subscription tier and update credit configurations
- Introduced a new "max" subscription tier with associated monthly credits and top-up limits. - Updated existing subscription tiers' monthly credits and top-up limits for "starter", "pro", and "business". - Enhanced credit display and overview components to reflect the new tier and its attributes. - Integrated Polar authentication features for improved subscription management and credit handling.
This commit is contained in:
@@ -9,6 +9,7 @@ const TIER_LABELS: Record<string, string> = {
|
||||
free: "Free",
|
||||
starter: "Starter",
|
||||
pro: "Pro",
|
||||
max: "Max",
|
||||
business: "Business",
|
||||
};
|
||||
|
||||
@@ -16,6 +17,7 @@ const TIER_COLORS: Record<string, string> = {
|
||||
free: "text-muted-foreground",
|
||||
starter: "text-blue-500",
|
||||
pro: "text-purple-500",
|
||||
max: "text-amber-500",
|
||||
business: "text-amber-500",
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user