diff --git a/src/components/Billing/UpgradeAccountModal.tsx b/src/components/Billing/UpgradeAccountModal.tsx index b4c7d0a14..452fd2665 100644 --- a/src/components/Billing/UpgradeAccountModal.tsx +++ b/src/components/Billing/UpgradeAccountModal.tsx @@ -5,6 +5,7 @@ import { MessageSquare, Sparkles, Heart, + MapIcon, } from 'lucide-react'; import type { LucideIcon } from 'lucide-react'; import { useEffect, useState } from 'react'; @@ -33,17 +34,22 @@ type Perk = { const PREMIUM_PERKS: Perk[] = [ { icon: Zap, - title: 'Unlimited AI Course Generations', - description: 'Generate as many custom courses as you need', + title: 'AI Course Generations', + description: 'No limits on the number of AI courses', + }, + { + icon: MapIcon, + title: 'AI Roadmaps', + description: 'No limits on the number of AI roadmaps', }, { icon: Infinity, - title: 'No Daily Limits on course features', - description: 'Use all features without restrictions', + title: 'Extended Daily Limits', + description: 'Generate more content in a day', }, { icon: MessageSquare, - title: 'Unlimited Course Follow-ups', + title: 'Course Follow-ups', description: 'Ask as many questions as you need', }, { @@ -284,7 +290,10 @@ export function UpgradeAccountModal(props: UpgradeAccountModalProps) { {PREMIUM_PERKS.map((perk, index) => { const Icon = perk.icon; return ( -