Update src/app/pricing/page.tsx
This commit is contained in:
@@ -11,47 +11,43 @@ import { DollarSign, HelpCircle, Sparkles } from "lucide-react";
|
||||
|
||||
export default function PricingPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Courses", id: "courses" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Courses", id: "/courses" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
title: "Product", items: [
|
||||
{ label: "Courses", href: "/courses" },
|
||||
{ label: "Pricing", href: "/pricing" },
|
||||
{ label: "Features", href: "/" },
|
||||
{ label: "Community", href: "/" },
|
||||
{ label: "Features", href: "#features" },
|
||||
{ label: "Community", href: "#community" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Team", href: "/about" },
|
||||
{ label: "Careers", href: "/" },
|
||||
{ label: "Blog", href: "/" },
|
||||
{ label: "Careers", href: "#careers" },
|
||||
{ label: "Blog", href: "#blog" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{ label: "Help Center", href: "/" },
|
||||
{ label: "Trading Guide", href: "/" },
|
||||
{ label: "Market News", href: "/" },
|
||||
{ label: "API Docs", href: "/" },
|
||||
title: "Resources", items: [
|
||||
{ label: "Help Center", href: "#help" },
|
||||
{ label: "Trading Guide", href: "#guide" },
|
||||
{ label: "Market News", href: "#news" },
|
||||
{ label: "API Docs", href: "#docs" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "/" },
|
||||
{ label: "Terms of Service", href: "/" },
|
||||
{ label: "Disclaimer", href: "/" },
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#privacy" },
|
||||
{ label: "Terms of Service", href: "#terms" },
|
||||
{ label: "Disclaimer", href: "#disclaimer" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
@@ -75,9 +71,7 @@ export default function PricingPage() {
|
||||
brandName="TradeWise"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Start Learning",
|
||||
href: "/courses",
|
||||
}}
|
||||
text: "Start Learning", href: "/courses"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -86,67 +80,25 @@ export default function PricingPage() {
|
||||
<PricingCardFive
|
||||
plans={[
|
||||
{
|
||||
id: "starter",
|
||||
tag: "Popular",
|
||||
tagIcon: Sparkles,
|
||||
price: "$29",
|
||||
period: "/month",
|
||||
description: "Perfect for beginners starting their trading journey",
|
||||
button: {
|
||||
text: "Get Started",
|
||||
href: "/signup",
|
||||
},
|
||||
featuresTitle: "Included:",
|
||||
features: [
|
||||
"Access to 50+ beginner courses",
|
||||
"Live daily market analysis",
|
||||
"Community forum access",
|
||||
"Basic performance tracking",
|
||||
"Email support",
|
||||
],
|
||||
id: "starter", tag: "Popular", tagIcon: Sparkles,
|
||||
price: "$29", period: "/month", description: "Perfect for beginners starting their trading journey", button: {
|
||||
text: "Get Started", href: "/courses"},
|
||||
featuresTitle: "Included:", features: [
|
||||
"Access to 50+ beginner courses", "Live daily market analysis", "Community forum access", "Basic performance tracking", "Email support"],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
tag: "Most Popular",
|
||||
tagIcon: Sparkles,
|
||||
price: "$79",
|
||||
period: "/month",
|
||||
description: "For serious traders wanting advanced strategies",
|
||||
button: {
|
||||
text: "Start Free Trial",
|
||||
href: "/signup",
|
||||
},
|
||||
featuresTitle: "Everything in Starter, plus:",
|
||||
features: [
|
||||
"150+ advanced courses",
|
||||
"Live trading sessions with experts",
|
||||
"1-on-1 mentoring (2 sessions/month)",
|
||||
"Advanced analytics dashboard",
|
||||
"Priority support",
|
||||
"Trading journal tools",
|
||||
],
|
||||
id: "pro", tag: "Most Popular", tagIcon: Sparkles,
|
||||
price: "$79", period: "/month", description: "For serious traders wanting advanced strategies", button: {
|
||||
text: "Start Free Trial", href: "/courses"},
|
||||
featuresTitle: "Everything in Starter, plus:", features: [
|
||||
"150+ advanced courses", "Live trading sessions with experts", "1-on-1 mentoring (2 sessions/month)", "Advanced analytics dashboard", "Priority support", "Trading journal tools"],
|
||||
},
|
||||
{
|
||||
id: "elite",
|
||||
tag: "Premium",
|
||||
tagIcon: Sparkles,
|
||||
price: "$199",
|
||||
period: "/month",
|
||||
description: "Exclusive access for elite traders and professionals",
|
||||
button: {
|
||||
text: "Contact Sales",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "Everything in Pro, plus:",
|
||||
features: [
|
||||
"Unlimited course access",
|
||||
"Unlimited 1-on-1 mentoring",
|
||||
"Private trading signals",
|
||||
"Custom trading strategies",
|
||||
"Dedicated account manager",
|
||||
"Early access to new courses",
|
||||
"VIP community access",
|
||||
],
|
||||
id: "elite", tag: "Premium", tagIcon: Sparkles,
|
||||
price: "$199", period: "/month", description: "Exclusive access for elite traders and professionals", button: {
|
||||
text: "Contact Sales", href: "/contact"},
|
||||
featuresTitle: "Everything in Pro, plus:", features: [
|
||||
"Unlimited course access", "Unlimited 1-on-1 mentoring", "Private trading signals", "Custom trading strategies", "Dedicated account manager", "Early access to new courses", "VIP community access"],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -165,41 +117,23 @@ export default function PricingPage() {
|
||||
<FaqDouble
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do I need prior trading experience?",
|
||||
content:
|
||||
"No! Our courses are designed for all levels. We start with the fundamentals and progress to advanced strategies. Whether you're a complete beginner or an experienced trader, you'll find relevant content tailored to your skill level.",
|
||||
},
|
||||
id: "1", title: "Do I need prior trading experience?", content:
|
||||
"No! Our courses are designed for all levels. We start with the fundamentals and progress to advanced strategies. Whether you're a complete beginner or an experienced trader, you'll find relevant content tailored to your skill level."},
|
||||
{
|
||||
id: "2",
|
||||
title: "How long does it take to complete a course?",
|
||||
content:
|
||||
"Course duration varies from 2-4 weeks for beginner courses to 8-12 weeks for advanced programs. You can learn at your own pace, reviewing lessons multiple times as needed.",
|
||||
},
|
||||
id: "2", title: "How long does it take to complete a course?", content:
|
||||
"Course duration varies from 2-4 weeks for beginner courses to 8-12 weeks for advanced programs. You can learn at your own pace, reviewing lessons multiple times as needed."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Are there live trading sessions?",
|
||||
content:
|
||||
"Yes! Pro and Elite members get access to live trading sessions where our expert traders analyze markets in real-time. These sessions cover market analysis, trade setups, and risk management techniques.",
|
||||
},
|
||||
id: "3", title: "Are there live trading sessions?", content:
|
||||
"Yes! Pro and Elite members get access to live trading sessions where our expert traders analyze markets in real-time. These sessions cover market analysis, trade setups, and risk management techniques."},
|
||||
{
|
||||
id: "4",
|
||||
title: "Can I get a refund if I'm not satisfied?",
|
||||
content:
|
||||
"We offer a 14-day money-back guarantee on all plans. If you're not satisfied with the platform or your learning experience, simply contact our support team for a full refund.",
|
||||
},
|
||||
id: "4", title: "Can I get a refund if I'm not satisfied?", content:
|
||||
"We offer a 14-day money-back guarantee on all plans. If you're not satisfied with the platform or your learning experience, simply contact our support team for a full refund."},
|
||||
{
|
||||
id: "5",
|
||||
title: "What payment methods do you accept?",
|
||||
content:
|
||||
"We accept all major credit cards (Visa, Mastercard, American Express), PayPal, and bank transfers for annual subscriptions. All payments are processed securely through industry-standard encryption.",
|
||||
},
|
||||
id: "5", title: "What payment methods do you accept?", content:
|
||||
"We accept all major credit cards (Visa, Mastercard, American Express), PayPal, and bank transfers for annual subscriptions. All payments are processed securely through industry-standard encryption."},
|
||||
{
|
||||
id: "6",
|
||||
title: "Is mentoring available for Starter members?",
|
||||
content:
|
||||
"Starter members have access to community forums and can learn from peers. One-on-one mentoring is available with Pro ($2/month) and Elite ($199/month) subscriptions, and can be purchased separately for Starter members.",
|
||||
},
|
||||
id: "6", title: "Is mentoring available for Starter members?", content:
|
||||
"Starter members have access to community forums and can learn from peers. One-on-one mentoring is available with Pro ($79/month) and Elite ($199/month) subscriptions, and can be purchased separately for Starter members."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about trading lessons, courses, and platform features."
|
||||
@@ -217,18 +151,13 @@ export default function PricingPage() {
|
||||
<ContactText
|
||||
text="Ready to transform your trading skills? Join thousands of successful traders. Get started with our free trial or contact our team for a personalized consultation."
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Free Trial",
|
||||
href: "/signup",
|
||||
},
|
||||
text: "Start Free Trial", href: "/courses"},
|
||||
{
|
||||
text: "Schedule Demo",
|
||||
href: "mailto:demo@tradewise.com",
|
||||
},
|
||||
text: "Schedule Demo", href: "mailto:demo@tradewise.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -242,4 +171,4 @@ export default function PricingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user