From 27a5e4d45ec87d6c8bb7178c1872562aea81c46a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:44:22 +0000 Subject: [PATCH] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 134 +++++++++------------------------------ 1 file changed, 31 insertions(+), 103 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 5df4bbe..f90add1 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -17,8 +17,7 @@ const PricingPage = () => { const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "How It Works", href: "#how-it-works" }, { label: "Available Markets", href: "/markets" }, { label: "Pricing", href: "/pricing" }, @@ -26,8 +25,7 @@ const PricingPage = () => { ] }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Blog", href: "/blog" }, { label: "Careers", href: "/careers" }, @@ -35,8 +33,7 @@ const PricingPage = () => { ] }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Documentation", href: "/docs" }, { label: "API Reference", href: "/api" }, { label: "FAQ", href: "#faq" }, @@ -44,8 +41,7 @@ const PricingPage = () => { ] }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Risk Disclosure", href: "/risk-disclosure" }, @@ -53,8 +49,7 @@ const PricingPage = () => { ] }, { - title: "Social", - items: [ + title: "Social", items: [ { label: "Twitter", href: "https://twitter.com/lendcapital" }, { label: "LinkedIn", href: "https://linkedin.com/company/lendcapital" }, { label: "Discord", href: "https://discord.gg/lendcapital" }, @@ -81,8 +76,7 @@ const PricingPage = () => { brandName="LendCapital" navItems={navItems} button={{ - text: "Start Trading", - href: "https://app.lendcapital.com/signup" + text: "Start Trading", href: "https://app.lendcapital.com/signup" }} /> @@ -97,60 +91,27 @@ const PricingPage = () => { useInvertedBackground={false} plans={[ { - id: "profit-fee", - tag: "When You Profit", - price: "5%", - period: "profit share", - description: "You keep 95% of profits on successful trades. We earn only when you earn.", - button: { - text: "Get Started", - href: "https://app.lendcapital.com/apply" + id: "profit-fee", tag: "When You Profit", price: "5%", period: "profit share", description: "You keep 95% of profits on successful trades. We earn only when you earn.", button: { + text: "Get Started", href: "https://app.lendcapital.com/apply" }, - featuresTitle: "What's Included:", - features: [ - "5% profit share on winning trades", - "95% of profits kept by you", - "No additional trading fees", - "Real-time profit tracking", - "Instant profit settlement" + featuresTitle: "What's Included:", features: [ + "5% profit share on winning trades", "95% of profits kept by you", "No additional trading fees", "Real-time profit tracking", "Instant profit settlement" ] }, { - id: "loss-fee", - tag: "When You Lose", - price: "$250-500", - period: "service fee", - description: "Cover losses using your collateral and pay a small platform fee for management.", - button: { - text: "Learn More", - href: "#faq" + id: "loss-fee", tag: "When You Lose", price: "$250-500", period: "service fee", description: "Cover losses using your collateral and pay a small platform fee for management.", button: { + text: "Learn More", href: "#faq" }, - featuresTitle: "Fee Structure:", - features: [ - "Loss covered by your collateral", - "Platform service fee: $250-500", - "Based on loss magnitude", - "Transparent fee calculation", - "No surprise charges" + featuresTitle: "Fee Structure:", features: [ + "Loss covered by your collateral", "Platform service fee: $250-500", "Based on loss magnitude", "Transparent fee calculation", "No surprise charges" ] }, { - id: "breakeven-fee", - tag: "Break-Even Trades", - price: "$0", - period: "no fee", - description: "Execute break-even trades without any platform fees charged.", - button: { - text: "Explore Strategies", - href: "#" + id: "breakeven-fee", tag: "Break-Even Trades", price: "$0", period: "no fee", description: "Execute break-even trades without any platform fees charged.", button: { + text: "Explore Strategies", href: "#" }, - featuresTitle: "Zero-Cost Trading:", - features: [ - "No fees on break-even positions", - "Borrowed capital repaid in full", - "No platform charges applied", - "Cost-effective risk management", - "Supports strategy optimization" + featuresTitle: "Zero-Cost Trading:", features: [ + "No fees on break-even positions", "Borrowed capital repaid in full", "No platform charges applied", "Cost-effective risk management", "Supports strategy optimization" ] } ]} @@ -161,66 +122,33 @@ const PricingPage = () => {