From 2b0f930e80411c818a126e6bd3c711cfb0681bf8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 22:21:55 +0000 Subject: [PATCH] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 190 +++++++++++---------------------------- 1 file changed, 52 insertions(+), 138 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 285c965..b7209cc 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -7,7 +7,7 @@ import FaqBase from '@/components/sections/faq/FaqBase'; import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; -import { Sparkles } from "lucide-react"; +import { Sparkles, Bolt } from "lucide-react"; export default function LandingPage() { return ( @@ -28,44 +28,26 @@ export default function LandingPage() { @@ -78,61 +60,33 @@ export default function LandingPage() { uniformGridCustomHeightClasses="min-h-[500px]" plans={[ { - id: "1", - badge: "Basic", - price: "$19/month", - subtitle: "Essential Training", - buttons: [ + id: "1", badge: "Basic", price: "$19/month", subtitle: "Essential Training", buttons: [ { - text: "Start Basic", - }, + text: "Start Basic" + } ], features: [ - "AI-powered workout plans", - "Basic nutrition guidance", - "Access to standard exercise library", - "Progress tracking", - ], + "AI-powered workout plans", "Basic nutrition guidance", "Access to standard exercise library", "Progress tracking"], }, { - id: "2", - badge: "Pro", - badgeIcon: Bolt, - price: "$39/month", - subtitle: "Advanced Transformation", - buttons: [ + id: "2", badge: "Pro", badgeIcon: Bolt, + price: "$39/month", subtitle: "Advanced Transformation", buttons: [ { - text: "Go Pro", - }, + text: "Go Pro" + } ], features: [ - "All Basic features", - "Personalized AI coaching", - "Advanced meal planning", - "Live class access", - "Premium exercise library", - "Priority support", - ], + "All Basic features", "Personalized AI coaching", "Advanced meal planning", "Live class access", "Premium exercise library", "Priority support"], }, { - id: "3", - badge: "Elite", - price: "$59/month", - subtitle: "Complete Lifestyle Change", - buttons: [ + id: "3", badge: "Elite", price: "$59/month", subtitle: "Complete Lifestyle Change", buttons: [ { - text: "Achieve Elite", - }, + text: "Achieve Elite" + } ], features: [ - "All Pro features", - "Dedicated human coach sessions", - "Customized macro tracking", - "Exclusive challenges & content", - "Wearable device integration", - "Mental wellness modules", - ], - }, + "All Pro features", "Dedicated human coach sessions", "Customized macro tracking", "Exclusive challenges & content", "Wearable device integration", "Mental wellness modules"], + } ]} title="Flexible Plans for Every Fitness Goal" description="Choose the perfect plan to unlock your ultimate body. Start your transformation today!" @@ -140,9 +94,7 @@ export default function LandingPage() { tagIcon={Sparkles} buttons={[ { - text: "See All Features", - href: "/features", - }, + text: "See All Features", href: "/features"} ]} /> @@ -153,25 +105,13 @@ export default function LandingPage() { useInvertedBackground={true} faqs={[ { - id: "1", - title: "Can I upgrade or downgrade my plan?", - content: "Yes, you can easily upgrade or downgrade your plan at any time through your account settings. Changes will be prorated.", - }, + id: "1", title: "Can I upgrade or downgrade my plan?", content: "Yes, you can easily upgrade or downgrade your plan at any time through your account settings. Changes will be prorated."}, { - id: "2", - title: "Is there a free trial available?", - content: "We offer a 7-day free trial for our Pro plan, allowing you to experience premium features before committing.", - }, + id: "2", title: "Is there a free trial available?", content: "We offer a 7-day free trial for our Pro plan, allowing you to experience premium features before committing."}, { - id: "3", - title: "What payment methods do you accept?", - content: "We accept all major credit cards (Visa, MasterCard, American Express) and PayPal for your convenience.", - }, + id: "3", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, MasterCard, American Express) and PayPal for your convenience."}, { - id: "4", - title: "Can I cancel my subscription at any time?", - content: "Yes, all subscriptions can be cancelled at any time from your account dashboard. No long-term contracts or hidden fees.", - }, + id: "4", title: "Can I cancel my subscription at any time?", content: "Yes, all subscriptions can be cancelled at any time from your account dashboard. No long-term contracts or hidden fees."}, ]} title="Frequently Asked Questions" description="Find answers to common questions about our plans and services." @@ -184,20 +124,15 @@ export default function LandingPage() { @@ -206,56 +141,35 @@ export default function LandingPage() {