Update src/app/pricing/page.tsx
This commit is contained in:
@@ -28,11 +28,12 @@ export default function PricingPage() {
|
||||
brandName="My Trade"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Pricing", id: "/pricing" }
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Start Trading",
|
||||
href: "/pricing"
|
||||
text: "Start Trading", href: "/pricing"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
@@ -47,52 +48,28 @@ export default function PricingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "starter",
|
||||
price: "$29/month",
|
||||
name: "Starter Plan",
|
||||
buttons: [
|
||||
id: "starter", price: "$29/month", name: "Starter Plan", buttons: [
|
||||
{ text: "Get Started", href: "#" }
|
||||
],
|
||||
features: [
|
||||
"Real-time price tracking",
|
||||
"Basic portfolio management",
|
||||
"5 saved watchlists",
|
||||
"Email support",
|
||||
"Mobile app access"
|
||||
"Real-time price tracking", "Basic portfolio management", "5 saved watchlists", "Email support", "Mobile app access"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "professional",
|
||||
badge: "Most Popular",
|
||||
badgeIcon: Sparkles,
|
||||
price: "$79/month",
|
||||
name: "Professional Plan",
|
||||
buttons: [
|
||||
id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$79/month", name: "Professional Plan", buttons: [
|
||||
{ text: "Start Free Trial", href: "#" }
|
||||
],
|
||||
features: [
|
||||
"Advanced analytics & charting",
|
||||
"Unlimited watchlists",
|
||||
"Performance metrics & reporting",
|
||||
"API access (up to 100 calls/min)",
|
||||
"Priority email & chat support",
|
||||
"Custom alerts & notifications"
|
||||
"Advanced analytics & charting", "Unlimited watchlists", "Performance metrics & reporting", "API access (up to 100 calls/min)", "Priority email & chat support", "Custom alerts & notifications"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "enterprise",
|
||||
price: "Custom",
|
||||
name: "Enterprise Plan",
|
||||
buttons: [
|
||||
id: "enterprise", price: "Custom", name: "Enterprise Plan", buttons: [
|
||||
{ text: "Contact Sales", href: "#contact" }
|
||||
],
|
||||
features: [
|
||||
"Full API access",
|
||||
"Dedicated account manager",
|
||||
"Custom integrations",
|
||||
"White-label solutions",
|
||||
"Advanced security features",
|
||||
"SLA & uptime guarantees"
|
||||
"Full API access", "Dedicated account manager", "Custom integrations", "White-label solutions", "Advanced security features", "SLA & uptime guarantees"
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -108,24 +85,16 @@ export default function PricingPage() {
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How real-time are your market statistics?",
|
||||
content: "Our market data updates in real-time with less than 100ms latency. We pull data from multiple exchanges simultaneously to ensure accuracy and prevent arbitrage opportunities from being missed."
|
||||
id: "1", title: "How real-time are your market statistics?", content: "Our market data updates in real-time with less than 100ms latency. We pull data from multiple exchanges simultaneously to ensure accuracy and prevent arbitrage opportunities from being missed."
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Can I connect my existing exchange accounts?",
|
||||
content: "Yes, My Trade supports integrations with major exchanges like Binance, Coinbase, Kraken, and more. We use secure API connections and never store your exchange credentials—they're encrypted and only used for data retrieval."
|
||||
id: "2", title: "Can I connect my existing exchange accounts?", content: "Yes, My Trade supports integrations with major exchanges like Binance, Coinbase, Kraken, and more. We use secure API connections and never store your exchange credentials—they're encrypted and only used for data retrieval."
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Is my trading data secure?",
|
||||
content: "Absolutely. We use military-grade encryption (AES-256), two-factor authentication, and comply with international security standards including SOC 2 Type II. Your data is never shared with third parties."
|
||||
id: "3", title: "Is my trading data secure?", content: "Absolutely. We use military-grade encryption (AES-256), two-factor authentication, and comply with international security standards including SOC 2 Type II. Your data is never shared with third parties."
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "What payment methods do you accept?",
|
||||
content: "We accept all major credit cards, bank transfers, and cryptocurrency payments (Bitcoin, Ethereum). All payments are processed through secure payment gateways with fraud protection."
|
||||
id: "4", title: "What payment methods do you accept?", content: "We accept all major credit cards, bank transfers, and cryptocurrency payments (Bitcoin, Ethereum). All payments are processed through secure payment gateways with fraud protection."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user