diff --git a/src/app/page.tsx b/src/app/page.tsx index 2bfb98c..c24df49 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -102,7 +102,7 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} plans={[ - { id: "free", badge: "Basic", price: "$0", subtitle: "Get started with essentials", buttons: [{ text: "Sign Up", onClick: () => handlePayment("free"]}], features: ["Limited daily AI questions", "Basic planner", "Ad-supported"]}, + { id: "free", badge: "Basic", price: "$0", subtitle: "Get started with essentials", buttons: [{ text: "Sign Up", onClick: () => handlePayment("free")}], features: ["Limited daily AI questions", "Basic planner", "Ad-supported"]}, { id: "premium", badge: "Pro", price: "$9.99", subtitle: "For focused learners", buttons: [{ text: "Upgrade", onClick: () => handlePayment("premium"]}], features: ["Unlimited explanations", "PDF summarization", "No ads"]}, { id: "plus", badge: "Plus", price: "$19.99", subtitle: "For top performers", buttons: [{ text: "Upgrade", onClick: () => handlePayment("plus"]}], features: ["Voice tutoring", "Exam prediction AI", "Group study rooms"]}, ]}