feat: add frontend subscription page - M4 (refs #55)

This commit is contained in:
Eric Gullickson
2026-01-18 16:37:10 -06:00
parent e7461a4836
commit 94d1c677bc
17 changed files with 1312 additions and 5 deletions

View 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'],
},
];