Update src/app/pricing/page.tsx
This commit is contained in:
@@ -41,55 +41,23 @@ export default function PricingPage() {
|
|||||||
<PricingCardEight
|
<PricingCardEight
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "starter",
|
id: "starter", badge: "Popular", badgeIcon: Star,
|
||||||
badge: "Popular",
|
price: "$0", subtitle: "Perfect for beginners", buttons: [{ text: "Start Free", href: "https://app.example.com/signup" }],
|
||||||
badgeIcon: Star,
|
|
||||||
price: "$0",
|
|
||||||
subtitle: "Perfect for beginners",
|
|
||||||
buttons: [{ text: "Start Free", href: "https://app.example.com/signup" }],
|
|
||||||
features: [
|
features: [
|
||||||
"Unlimited trades per month",
|
"Unlimited trades per month", "Basic charting tools", "Email support", "Mobile app access", "Community forum access", "Standard trading fees (0.1%/0.2%)"
|
||||||
"Basic charting tools",
|
|
||||||
"Email support",
|
|
||||||
"Mobile app access",
|
|
||||||
"Community forum access",
|
|
||||||
"Standard trading fees (0.1%/0.2%)"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "pro",
|
id: "pro", badge: "Most Popular", badgeIcon: Sparkles,
|
||||||
badge: "Most Popular",
|
price: "$19/mo", subtitle: "Best for active traders", buttons: [{ text: "Upgrade Now", href: "https://app.example.com/pro" }],
|
||||||
badgeIcon: Sparkles,
|
|
||||||
price: "$19/mo",
|
|
||||||
subtitle: "Best for active traders",
|
|
||||||
buttons: [{ text: "Upgrade Now", href: "https://app.example.com/pro" }],
|
|
||||||
features: [
|
features: [
|
||||||
"All Starter features",
|
"All Starter features", "Advanced analytics & AI signals", "Priority support 24/7", "API access with rate limits", "Custom alerts and notifications", "Lower trading fees (0.05%/0.1%)", "Advanced order types", "Portfolio management tools"
|
||||||
"Advanced analytics & AI signals",
|
|
||||||
"Priority support 24/7",
|
|
||||||
"API access with rate limits",
|
|
||||||
"Custom alerts and notifications",
|
|
||||||
"Lower trading fees (0.05%/0.1%)",
|
|
||||||
"Advanced order types",
|
|
||||||
"Portfolio management tools"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "elite",
|
id: "elite", badge: "Premium", price: "$99/mo", subtitle: "For professional traders", buttons: [{ text: "Go Elite", href: "https://app.example.com/elite" }],
|
||||||
badge: "Premium",
|
|
||||||
price: "$99/mo",
|
|
||||||
subtitle: "For professional traders",
|
|
||||||
buttons: [{ text: "Go Elite", href: "https://app.example.com/elite" }],
|
|
||||||
features: [
|
features: [
|
||||||
"All Pro features",
|
"All Pro features", "Dedicated account manager", "White-label solutions", "Margin trading access", "Premium liquidity pools", "Custom fee structure", "Institutional-grade security", "Priority order execution", "Advanced risk management"
|
||||||
"Dedicated account manager",
|
|
||||||
"White-label solutions",
|
|
||||||
"Margin trading access",
|
|
||||||
"Premium liquidity pools",
|
|
||||||
"Custom fee structure",
|
|
||||||
"Institutional-grade security",
|
|
||||||
"Priority order execution",
|
|
||||||
"Advanced risk management"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
@@ -107,36 +75,26 @@ export default function PricingPage() {
|
|||||||
<FaqSplitText
|
<FaqSplitText
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Can I change my plan anytime?", content: "Yes! You can upgrade or downgrade your plan at any time. Changes take effect immediately and we'll prorate any billing differences."
|
||||||
title: "Can I change my plan anytime?",
|
|
||||||
content: "Yes! You can upgrade or downgrade your plan at any time. Changes take effect immediately and we'll prorate any billing differences."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "What payment methods do you accept?", content: "We accept all major credit cards, bank transfers, and cryptocurrency payments including Bitcoin, Ethereum, and USDC."
|
||||||
title: "What payment methods do you accept?",
|
|
||||||
content: "We accept all major credit cards, bank transfers, and cryptocurrency payments including Bitcoin, Ethereum, and USDC."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Is there a free trial for paid plans?", content: "Yes! Pro and Elite plans come with a 14-day free trial. No credit card required to start your trial period."
|
||||||
title: "Is there a free trial for paid plans?",
|
|
||||||
content: "Yes! Pro and Elite plans come with a 14-day free trial. No credit card required to start your trial period."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "What happens to my data if I downgrade?", content: "Your trading history and portfolio data are always preserved. Some advanced features may be limited based on your plan."
|
||||||
title: "What happens to my data if I downgrade?",
|
|
||||||
content: "Your trading history and portfolio data are always preserved. Some advanced features may be limited based on your plan."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "Do you offer volume discounts?", content: "Yes! High-volume traders and institutions can contact our sales team for custom pricing and enterprise features."
|
||||||
title: "Do you offer volume discounts?",
|
|
||||||
content: "Yes! High-volume traders and institutions can contact our sales team for custom pricing and enterprise features."
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
sideTitle="Pricing Questions"
|
sideTitle="Pricing Questions"
|
||||||
sideDescription="Everything you need to know about our plans and billing"
|
sideDescription="Everything you need to know about our plans and billing"
|
||||||
textPosition="left"
|
textPosition="left"
|
||||||
animationType="smooth"
|
animationType="smooth"
|
||||||
useInvertedBackground="invertDefault"
|
useInvertedBackground="noInvert"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -160,8 +118,7 @@ export default function PricingPage() {
|
|||||||
<FooterBaseReveal
|
<FooterBaseReveal
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product",
|
title: "Product", items: [
|
||||||
items: [
|
|
||||||
{ label: "Features", href: "/features" },
|
{ label: "Features", href: "/features" },
|
||||||
{ label: "Pricing", href: "/pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Security", href: "https://cryptovault.io/security" },
|
{ label: "Security", href: "https://cryptovault.io/security" },
|
||||||
@@ -169,8 +126,7 @@ export default function PricingPage() {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Blog", href: "https://blog.cryptovault.io" },
|
{ label: "Blog", href: "https://blog.cryptovault.io" },
|
||||||
{ label: "Careers", href: "https://careers.cryptovault.io" },
|
{ label: "Careers", href: "https://careers.cryptovault.io" },
|
||||||
@@ -178,8 +134,7 @@ export default function PricingPage() {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{ label: "Privacy Policy", href: "https://cryptovault.io/privacy" },
|
{ label: "Privacy Policy", href: "https://cryptovault.io/privacy" },
|
||||||
{ label: "Terms of Service", href: "https://cryptovault.io/terms" },
|
{ label: "Terms of Service", href: "https://cryptovault.io/terms" },
|
||||||
{ label: "Cookie Policy", href: "https://cryptovault.io/cookies" },
|
{ label: "Cookie Policy", href: "https://cryptovault.io/cookies" },
|
||||||
|
|||||||
Reference in New Issue
Block a user