diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 1cf415c..8a26afe 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -43,58 +43,31 @@ export default function PricingPage() { tagAnimation="slide-up" plans={[ { - id: "basic", - badge: "Starter", - badgeIcon: Sparkles, - price: "Free", - subtitle: "Perfect for trying MITA", - buttons: [ + id: "basic", badge: "Starter", badgeIcon: Sparkles, + price: "Free", subtitle: "Perfect for trying MITA", buttons: [ { text: "Get Started", href: "/chat" }, { text: "Learn More", href: "#" }, ], features: [ - "50 questions/month", - "Single subject access", - "Basic chat history", - "Email support", - ], + "50 questions/month", "Single subject access", "Basic chat history", "Email support"], }, { - id: "pro", - badge: "Professional", - badgeIcon: Zap, - price: "$9.99/mo", - subtitle: "For serious learners", - buttons: [ + id: "pro", badge: "Professional", badgeIcon: Zap, + price: "$9.99/mo", subtitle: "For serious learners", buttons: [ { text: "Subscribe Now", href: "/chat" }, { text: "Chat to Sales", href: "#" }, ], features: [ - "Unlimited questions", - "All subjects access", - "Advanced formatting", - "Priority support", - "Export responses", - ], + "Unlimited questions", "All subjects access", "Advanced formatting", "Priority support", "Export responses"], }, { - id: "premium", - badge: "Premium", - badgeIcon: Award, - price: "$19.99/mo", - subtitle: "Complete learning suite", - buttons: [ + id: "premium", badge: "Premium", badgeIcon: Award, + price: "$19.99/mo", subtitle: "Complete learning suite", buttons: [ { text: "Start Premium", href: "/chat" }, { text: "Book Demo", href: "#" }, ], features: [ - "Everything in Pro", - "Study mode (structured only)", - "PDF export & printing", - "Response ratings (1-5 stars)", - "Admin analytics", - "24/7 priority support", - ], + "Everything in Pro", "Study mode (structured only)", "PDF export & printing", "Response ratings (1-5 stars)", "Admin analytics", "24/7 priority support"], }, ]} animationType="slide-up" @@ -112,35 +85,17 @@ export default function PricingPage() { tagAnimation="slide-up" faqs={[ { - id: "1", - title: "Can I switch between plans?", - content: "Yes! You can upgrade or downgrade your plan at any time. Changes take effect immediately, and we'll prorate your billing accordingly.", - }, + id: "1", title: "Can I switch between plans?", content: "Yes! You can upgrade or downgrade your plan at any time. Changes take effect immediately, and we'll prorate your billing accordingly."}, { - id: "2", - title: "Is there a long-term commitment?", - content: "No. All our plans are month-to-month with no long-term contracts. You can cancel anytime without penalties or hidden fees.", - }, + id: "2", title: "Is there a long-term commitment?", content: "No. All our plans are month-to-month with no long-term contracts. You can cancel anytime without penalties or hidden fees."}, { - id: "3", - title: "Do you offer student discounts?", - content: "We offer discounted rates for verified students and educational institutions. Contact our sales team to learn about special pricing.", - }, + id: "3", title: "Do you offer student discounts?", content: "We offer discounted rates for verified students and educational institutions. Contact our sales team to learn about special pricing."}, { - id: "4", - title: "What payment methods do you accept?", - content: "We accept all major credit cards, PayPal, and bank transfers. Monthly billing is automatic, but you can pause or cancel at any time.", - }, + id: "4", title: "What payment methods do you accept?", content: "We accept all major credit cards, PayPal, and bank transfers. Monthly billing is automatic, but you can pause or cancel at any time."}, { - id: "5", - title: "Is there a refund policy?", - content: "We offer a 7-day money-back guarantee if you're not satisfied. After 7 days, monthly subscriptions renew automatically on your billing date.", - }, + id: "5", title: "Is there a refund policy?", content: "We offer a 7-day money-back guarantee if you're not satisfied. After 7 days, monthly subscriptions renew automatically on your billing date."}, { - id: "6", - title: "What happens if I don't use my questions?", - content: "Pro and Premium plans include unlimited questions, so there's no quota to worry about. Free tier questions reset monthly.", - }, + id: "6", title: "What happens if I don't use my questions?", content: "Pro and Premium plans include unlimited questions, so there's no quota to worry about. Free tier questions reset monthly."}, ]} textboxLayout="default" useInvertedBackground={true} @@ -164,14 +119,13 @@ export default function PricingPage() {