Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-25 22:21:55 +00:00
parent 7d5f70beae
commit 2b0f930e80

View File

@@ -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() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "home",
name: "Home", id: "home"},
{
name: "Features", id: "features"},
{
name: "Progress", id: "metrics"},
{
name: "Trainers", id: "team"},
{
name: "Testimonials", id: "testimonials"},
{
name: "FAQ", id: "faq"},
{
name: "Pricing", id: "pricing"
},
{
name: "Features",
id: "features",
},
{
name: "Progress",
id: "metrics",
},
{
name: "Trainers",
id: "team",
},
{
name: "Testimonials",
id: "testimonials",
},
{
name: "FAQ",
id: "faq",
},
{
name: "Pricing",
id: "pricing",
href: "/pricing",
},
{
name: "Contact",
id: "contact",
href: "/contact",
},
name: "Contact", id: "contact"
}
]}
button={{
text: "Start Your Journey",
href: "/signup",
}}
text: "Start Your Journey", href: "/signup"}}
brandName="FitForge AI"
/>
</div>
@@ -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"}
]}
/>
</div>
@@ -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() {
<ContactCTA
useInvertedBackground={false}
background={{
variant: "sparkles-gradient",
}}
variant: "sparkles-gradient"}}
tag="Ready to Transform?"
title="Start Your Fitness Journey Today!"
description="Join thousands achieving their dream body with FitForge AI. Personalized plans, expert guidance, and measurable results await."
buttons={[
{
text: "Choose Your Plan",
href: "/pricing",
},
text: "Choose Your Plan", href: "/pricing"},
{
text: "Learn More",
href: "/about",
},
text: "Learn More", href: "/about"},
]}
/>
</div>
@@ -206,56 +141,35 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Product",
items: [
title: "Product", items: [
{
label: "Pricing",
href: "/pricing",
},
label: "Pricing", href: "/pricing"},
{
label: "Features",
href: "/features",
},
label: "Features", href: "/features"},
{
label: "Dashboard",
href: "/dashboard",
},
label: "Dashboard", href: "/dashboard"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Trainers",
href: "/trainers",
},
label: "Trainers", href: "/trainers"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "Support",
href: "/support",
},
label: "Support", href: "/support"},
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
],
},
}
]}
logoText="Build Your Ultimate Body"
copyrightText="© 2024 Build Your Ultimate Body. All rights reserved."