From 142e01289c007d51346501f730154fb012c3ada9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 03:45:37 +0000 Subject: [PATCH] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 65 +++++++++++----------------------------- 1 file changed, 17 insertions(+), 48 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 9e843b6..c4826da 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -19,8 +19,7 @@ export default function PricingPage() { const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }, { label: "Security", href: "#" }, @@ -28,8 +27,7 @@ export default function PricingPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, @@ -37,8 +35,7 @@ export default function PricingPage() { ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "Help Center", href: "#" }, { label: "Contact", href: "#contact" }, { label: "Terms", href: "#" }, @@ -80,57 +77,29 @@ export default function PricingPage() { animationType="slide-up" plans={[ { - id: "free", - price: "Free", - name: "Starter", - buttons={[ + id: "free", price: "Free", name: "Starter", buttons: [ { text: "Get Started", href: "https://app.gradeoptim.com/signup" }, { text: "Learn More", href: "#contact" }, - ]} - features={[ - "Basic GPA calculator", - "Single custom grading scale", - "Grade tracking for 1 semester", - "Email support", - ]} + ], + features: [ + "Basic GPA calculator", "Single custom grading scale", "Grade tracking for 1 semester", "Email support"], }, { - id: "premium", - badge: "Most Popular", - badgeIcon: Sparkles, - price: "$8.99/mo", - name: "Premium", - buttons={[ + id: "premium", badge: "Most Popular", badgeIcon: Sparkles, + price: "$8.99/mo", name: "Premium", buttons: [ { text: "Start Free Trial", href: "https://app.gradeoptim.com/signup" }, { text: "Chat to Sales", href: "#contact" }, - ]} - features={[ - "All Starter features", - "Unlimited custom grading scales", - "Predictive GPA forecasting", - "Performance trend graphs", - "Risk scoring system", - "AI recommendation engine", - "Exam score predictor", - "Priority email support", - ]} + ], + features: [ + "All Starter features", "Unlimited custom grading scales", "Predictive GPA forecasting", "Performance trend graphs", "Risk scoring system", "AI recommendation engine", "Exam score predictor", "Priority email support"], }, { - id: "family", - price: "$24.99/mo", - name: "Family Plan", - buttons={[ + id: "family", price: "$24.99/mo", name: "Family Plan", buttons: [ { text: "Start Free Trial", href: "https://app.gradeoptim.com/signup" }, { text: "Contact Sales", href: "#contact" }, - ]} - features={[ - "All Premium features", - "Up to 4 student accounts", - "Parental monitoring dashboard", - "Student progress reports", - "Academic goal tracking", - "24/7 priority support", - ]} + ], + features: [ + "All Premium features", "Up to 4 student accounts", "Parental monitoring dashboard", "Student progress reports", "Academic goal tracking", "24/7 priority support"], }, ]} carouselMode="buttons" @@ -153,7 +122,7 @@ export default function PricingPage() {