feat: add frontend subscription page - M4 (refs #55)
This commit is contained in:
28
frontend/src/features/subscription/constants/plans.ts
Normal file
28
frontend/src/features/subscription/constants/plans.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import type { SubscriptionPlan } from '../types/subscription.types';
|
||||
|
||||
export const PLANS: SubscriptionPlan[] = [
|
||||
{
|
||||
tier: 'free',
|
||||
name: 'Free',
|
||||
monthlyPrice: 0,
|
||||
yearlyPrice: 0,
|
||||
vehicleLimit: 2,
|
||||
features: ['2 vehicles', 'Basic tracking', 'Standard reports'],
|
||||
},
|
||||
{
|
||||
tier: 'pro',
|
||||
name: 'Pro',
|
||||
monthlyPrice: 1.99,
|
||||
yearlyPrice: 19.99,
|
||||
vehicleLimit: 5,
|
||||
features: ['Up to 5 vehicles', 'VIN decoding', 'OCR functionality', 'API access'],
|
||||
},
|
||||
{
|
||||
tier: 'enterprise',
|
||||
name: 'Enterprise',
|
||||
monthlyPrice: 4.99,
|
||||
yearlyPrice: 49.99,
|
||||
vehicleLimit: 'unlimited',
|
||||
features: ['Unlimited vehicles', 'All Pro features', 'Priority support'],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user