diff --git a/auto-analyst-frontend/app/checkout/page.tsx b/auto-analyst-frontend/app/checkout/page.tsx index c923a3e5..bd024063 100644 --- a/auto-analyst-frontend/app/checkout/page.tsx +++ b/auto-analyst-frontend/app/checkout/page.tsx @@ -531,9 +531,9 @@ export default function CheckoutPage() { )}
- Billed {planDetails.cycle === 'year' ? 'yearly' : planDetails.cycle === 'day' ? 'daily' : 'monthly'} -
++ Billed {planDetails.cycle === 'year' ? 'yearly' : planDetails.cycle === 'day' ? 'daily' : 'monthly'} +
{billingCycle === 'yearly' && (Credits reset monthly, but you're billed yearly @@ -581,9 +581,9 @@ export default function CheckoutPage() { )} {discountApplied && discountInfo && ( `You save $${ - discountInfo.type === 'percent' - ? ((planDetails.amount * discountInfo.value) / 100).toFixed(2) - : discountInfo.value.toFixed(2) + discountInfo.type === 'percent' + ? ((planDetails.amount * discountInfo.value) / 100).toFixed(2) + : discountInfo.value.toFixed(2) } with promo code!` )} {billingCycle === 'yearly' && planDetails.name === 'Standard' && discountApplied && discountInfo && ( diff --git a/auto-analyst-frontend/app/pricing/page.tsx b/auto-analyst-frontend/app/pricing/page.tsx index ece63920..1f6a29a2 100644 --- a/auto-analyst-frontend/app/pricing/page.tsx +++ b/auto-analyst-frontend/app/pricing/page.tsx @@ -32,7 +32,7 @@ const pricingTiers = [ 'Advanced data analysis', 'Access to all models', 'Priority support', - `${TrialUtils.getTrialDisplayText()} free trial`, + `${TrialUtils.getTrialDisplayText()}`, ], highlight: true, trial: true, diff --git a/auto-analyst-frontend/lib/credits-config.ts b/auto-analyst-frontend/lib/credits-config.ts index 6d4afb55..1be559bc 100644 --- a/auto-analyst-frontend/lib/credits-config.ts +++ b/auto-analyst-frontend/lib/credits-config.ts @@ -49,9 +49,9 @@ export interface TrialConfig { * Trial period configuration - Change here to update across the entire app */ export const TRIAL_CONFIG: TrialConfig = { - duration: 5, - unit: 'minutes', - displayText: '5-Minute Trial', + duration: 2, + unit: 'days', + displayText: '2-Day Free Trial', credits: 500 }