Merge version_1 into main #3

Merged
bender merged 3 commits from version_1 into main 2026-03-07 11:46:31 +00:00
3 changed files with 243 additions and 652 deletions

View File

@@ -1,19 +1,61 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function AboutPage() {
const AboutPage = () => {
const navItems = [
{ name: "How It Works", id: "how-it-works" },
{ name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "About", id: "about" },
{ name: "FAQ", id: "faq" },
{ name: "FAQ", id: "faq" }
];
const footerColumns = [
{
title: "Product", items: [
{ label: "How It Works", href: "#how-it-works" },
{ label: "Available Markets", href: "/markets" },
{ label: "Pricing", href: "#pricing" },
{ label: "Trading Dashboard", href: "https://app.lendcapital.com/dashboard" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "/blog" },
{ label: "Careers", href: "/careers" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Resources", items: [
{ label: "Documentation", href: "/docs" },
{ label: "API Reference", href: "/api" },
{ label: "FAQ", href: "#faq" },
{ label: "Security", href: "/security" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
{ label: "Risk Disclosure", href: "/risk-disclosure" },
{ label: "Compliance", href: "/compliance" }
]
},
{
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" },
{ label: "GitHub", href: "https://github.com/lendcapital" }
]
}
];
return (
@@ -34,76 +76,25 @@ export default function AboutPage() {
brandName="LendCapital"
navItems={navItems}
button={{
text: "Start Trading",
href: "https://app.lendcapital.com/signup",
text: "Start Trading", href: "https://app.lendcapital.com/signup"
}}
/>
</div>
<div id="about-company" data-section="about-company">
<div id="about" data-section="about">
<MetricSplitMediaAbout
tag="Our Mission"
title="Democratizing Trading Capital Access"
description="LendCapital was founded to solve a fundamental problem in professional trading: talented traders are limited not by skill but by capital. We believe professional traders deserve access to institutional-scale capital with aligned economics and transparent operations."
title="Democratizing Access to Trading Capital"
description="LendCapital was founded with a simple belief: talented traders shouldn't be limited by personal capital. We've built a platform that bridges the gap between trader ambition and institutional opportunity, with complete transparency and institutional-grade security."
metrics={[
{
value: "Founded",
title: "2023 - Building the future of fintech lending",
},
{
value: "Global",
title: "Traders from 40+ countries trust our platform",
},
{ value: "500+", title: "Professional traders empowered" },
{ value: "$100M+", title: "Trading capital deployed" }
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png?_wi=7"
imageAlt="Our institutional infrastructure"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png"
imageAlt="Our vision for accessible trading capital"
useInvertedBackground={false}
mediaAnimation="slide-up"
/>
</div>
<div id="values" data-section="values">
<FeatureCardNineteen
title="Our Core Values"
description="Everything we build is guided by these principles that define how we operate and what we stand for."
tag="Principles"
features={[
{
id: 1,
tag: "Transparency",
title: "Full Visibility",
subtitle: "No hidden fees, no black boxes",
description:
"Every fee, every calculation, every risk metric is visible to traders. We believe in radical transparency because your capital deserves clear understanding of where value flows.",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/a-modern-fintech-trading-dashboard-with--1772883710348-83ab50dc.png?_wi=5",
imageAlt: "Transparent dashboard",
},
{
id: 2,
tag: "Alignment",
title: "Aligned Incentives",
subtitle: "We win when you win",
description:
"Our 95/5 profit-sharing model creates genuine alignment. We're not betting against you; we're betting on your success. This fundamental alignment differentiates us from traditional margin lenders.",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-secure-collateral-custod-1772883707319-e35d8d0f.png?_wi=4",
imageAlt: "Aligned partnership",
},
{
id: 3,
tag: "Security",
title: "Institutional Grade",
subtitle: "Uncompromising protection",
description:
"Your collateral and trading capital are protected with institutional-grade infrastructure. Cold storage, multi-signature security, insurance, and 24/7 monitoring ensure your assets are genuinely safe.",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png?_wi=8",
imageAlt: "Security infrastructure",
},
]}
textboxLayout="default"
useInvertedBackground={false}
metricsAnimation="opacity"
/>
</div>
@@ -111,115 +102,11 @@ export default function AboutPage() {
<FooterBaseCard
logoText="LendCapital"
copyrightText="© 2025 LendCapital. All rights reserved. Empowering traders with institutional capital."
columns={[
{
title: "Product",
items: [
{
label: "How It Works",
href: "#how-it-works",
},
{
label: "Available Markets",
href: "#",
},
{
label: "Pricing",
href: "#pricing",
},
{
label: "Trading Dashboard",
href: "https://app.lendcapital.com/dashboard",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Blog",
href: "#",
},
{
label: "Careers",
href: "#",
},
{
label: "Contact",
href: "#",
},
],
},
{
title: "Resources",
items: [
{
label: "Documentation",
href: "#",
},
{
label: "API Reference",
href: "#",
},
{
label: "FAQ",
href: "#faq",
},
{
label: "Security",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
{
label: "Risk Disclosure",
href: "#",
},
{
label: "Compliance",
href: "#",
},
],
},
{
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",
},
{
label: "GitHub",
href: "https://github.com/lendcapital",
},
],
},
]}
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}
};
export default AboutPage;

View File

@@ -1,13 +1,13 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function HowItWorksPage() {
const HowItWorksPage = () => {
const navItems = [
{ name: "How It Works", id: "how-it-works" },
{ name: "Features", id: "features" },
@@ -18,17 +18,15 @@ export default function HowItWorksPage() {
const footerColumns = [
{
title: "Product",
items: [
{ label: "How It Works", href: "/how-it-works" },
title: "Product", items: [
{ label: "How It Works", href: "#how-it-works" },
{ label: "Available Markets", href: "/markets" },
{ label: "Pricing", href: "/pricing" },
{ label: "Pricing", href: "#pricing" },
{ label: "Trading Dashboard", href: "https://app.lendcapital.com/dashboard" }
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "/blog" },
{ label: "Careers", href: "/careers" },
@@ -36,8 +34,7 @@ export default function HowItWorksPage() {
]
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "/docs" },
{ label: "API Reference", href: "/api" },
{ label: "FAQ", href: "#faq" },
@@ -45,8 +42,7 @@ export default function HowItWorksPage() {
]
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
{ label: "Risk Disclosure", href: "/risk-disclosure" },
@@ -54,8 +50,7 @@ export default function HowItWorksPage() {
]
},
{
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" },
@@ -82,44 +77,36 @@ export default function HowItWorksPage() {
brandName="LendCapital"
navItems={navItems}
button={{
text: "Start Trading",
href: "https://app.lendcapital.com/signup"
text: "Start Trading", href: "https://app.lendcapital.com/signup"
}}
/>
</div>
<div id="how-it-works" data-section="how-it-works">
<FeatureCardNineteen
title="How Trading Works"
description="Our streamlined process gets you trading capital in minutes. Follow these simple steps to start amplifying your trading potential."
title="Our Trading Process"
description="A streamlined workflow designed to get you trading capital in minutes. Here's how it works:"
tag="Platform Process"
features={[
{
id: 1,
tag: "Step 1",
title: "Create Account",
subtitle: "Quick registration and verification",
description: "Sign up with your email and complete our KYC verification process. Takes just 5 minutes to get started and verify your identity for compliance.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/clean-illustration-showing-a-user-signin-1772883708741-2c524d16.png?_wi=2",
imageAlt: "Account signup and verification"
tag: "Step 1", title: "Create Account", subtitle: "Quick registration and verification", description: "Sign up with your email and complete our KYC verification process. Takes just 5 minutes to get started and verify your identity for compliance.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/clean-illustration-showing-a-user-signin-1772883708741-2c524d16.png", imageAlt: "Account signup and verification"
},
{
id: 2,
tag: "Step 2",
title: "Deposit Collateral",
subtitle: "Fund your trading account",
description: "Deposit your collateral in cryptocurrency or fiat currency. Your collateral is held in secure, institutional-grade custody and used to protect both you and us.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-a-user-depositing-collat-1772883707156-732dadca.png?_wi=2",
imageAlt: "Collateral deposit interface"
tag: "Step 2", title: "Deposit Collateral", subtitle: "Fund your trading account", description: "Deposit your collateral in cryptocurrency or fiat currency. Your collateral is held in secure, institutional-grade custody and used to protect both you and us.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-a-user-depositing-collat-1772883707156-732dadca.png", imageAlt: "Collateral deposit interface"
},
{
id: 3,
tag: "Step 3",
title: "Borrow Trading Capital",
subtitle: "Access additional funds",
description: "Choose stocks or cryptocurrencies to borrow. Our platform offers flexible borrowing for various assets with transparent fee structures and risk controls.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-showing-a-trader-borrowing--1772883707762-a39fd194.png?_wi=2",
imageAlt: "Asset borrowing interface"
tag: "Step 3", title: "Borrow Trading Capital", subtitle: "Access additional funds", description: "Choose stocks or cryptocurrencies to borrow. Our platform offers flexible borrowing for various assets with transparent fee structures and risk controls.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-showing-a-trader-borrowing--1772883707762-a39fd194.png", imageAlt: "Asset borrowing interface"
},
{
id: 4,
tag: "Step 4", title: "Execute Trades", subtitle: "Trade in the market", description: "Use our advanced trading interface to execute your strategies. Monitor positions in real-time with professional-grade charting and analysis tools.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-active-trading-execution-1772883707779-350d92a3.png", imageAlt: "Trading execution dashboard"
},
{
id: 5,
tag: "Step 5", title: "Profit or Repay", subtitle: "Close and settle", description: "When you close your positions, you either share profits with us or repay the borrowed amount plus a service fee using your collateral. Transparent economics every time.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/split-illustration-showing-two-outcomes--1772883709281-366a886c.png", imageAlt: "Profit and loss settlement"
}
]}
textboxLayout="default"
@@ -129,23 +116,18 @@ export default function HowItWorksPage() {
<div id="process-details" data-section="process-details">
<MetricSplitMediaAbout
tag="Complete Understanding"
title="Step-by-Step Execution"
description="Each stage of the trading process is designed with transparency and control in mind. From account creation through position management, you maintain full visibility and authority over your collateral and trades."
tag="Process Transparency"
title="Clear Economics at Every Step"
description="Our process is designed with complete transparency. You always know exactly what will happen at each stage, what you'll earn, and what fees you'll pay. No hidden surprises, just straightforward economics."
metrics={[
{
value: "5 min",
title: "Average account setup time"
},
{
value: "100%",
title: "Collateral visibility and control"
}
{ value: "5 min", title: "Average time to complete account setup" },
{ value: "100%", title: "Transparency on all fees and economics" }
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/split-illustration-showing-two-outcomes--1772883709281-366a886c.png?_wi=2"
imageAlt="Complete trading workflow"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png"
imageAlt="Process transparency and security"
useInvertedBackground={false}
mediaAnimation="slide-up"
metricsAnimation="opacity"
/>
</div>
@@ -158,4 +140,6 @@ export default function HowItWorksPage() {
</div>
</ThemeProvider>
);
}
};
export default HowItWorksPage;

View File

@@ -1,24 +1,67 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import FaqBase from "@/components/sections/faq/FaqBase";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import FaqBase from '@/components/sections/faq/FaqBase';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function HomePage() {
const HomePage = () => {
const navItems = [
{ name: "How It Works", id: "how-it-works" },
{ name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "About", id: "about" },
{ name: "FAQ", id: "faq" },
{ name: "FAQ", id: "faq" }
];
const footerColumns = [
{
title: "Product", items: [
{ label: "How It Works", href: "#how-it-works" },
{ label: "Available Markets", href: "/markets" },
{ label: "Pricing", href: "#pricing" },
{ label: "Trading Dashboard", href: "https://app.lendcapital.com/dashboard" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "/blog" },
{ label: "Careers", href: "/careers" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Resources", items: [
{ label: "Documentation", href: "/docs" },
{ label: "API Reference", href: "/api" },
{ label: "FAQ", href: "#faq" },
{ label: "Security", href: "/security" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
{ label: "Risk Disclosure", href: "/risk-disclosure" },
{ label: "Compliance", href: "/compliance" }
]
},
{
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" },
{ label: "GitHub", href: "https://github.com/lendcapital" }
]
}
];
return (
@@ -39,8 +82,7 @@ export default function HomePage() {
brandName="LendCapital"
navItems={navItems}
button={{
text: "Start Trading",
href: "https://app.lendcapital.com/signup",
text: "Start Trading", href: "https://app.lendcapital.com/signup"
}}
/>
</div>
@@ -50,31 +92,13 @@ export default function HomePage() {
logoText="LENDCAPITAL"
description="Access powerful trading capital without putting up full funds. Trade stocks and crypto, keep the majority of your profits, and only share returns when you succeed."
buttons={[
{
text: "Apply for Trading Capital",
href: "https://app.lendcapital.com/apply",
},
{
text: "Learn How It Works",
href: "#how-it-works",
},
{ text: "Apply for Trading Capital", href: "https://app.lendcapital.com/apply" },
{ text: "Learn How It Works", href: "#how-it-works" }
]}
slides={[
{
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/a-modern-fintech-trading-dashboard-with--1772883710348-83ab50dc.png?_wi=1",
imageAlt: "Advanced trading dashboard interface",
},
{
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png?_wi=1",
imageAlt: "Secure institutional infrastructure",
},
{
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-secure-collateral-custod-1772883707319-e35d8d0f.png?_wi=1",
imageAlt: "Protected collateral custody",
},
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/a-modern-fintech-trading-dashboard-with--1772883710348-83ab50dc.png", imageAlt: "Advanced trading dashboard interface" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png", imageAlt: "Secure institutional infrastructure" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-secure-collateral-custod-1772883707319-e35d8d0f.png", imageAlt: "Protected collateral custody" }
]}
autoplayDelay={4000}
showDimOverlay={true}
@@ -89,59 +113,24 @@ export default function HomePage() {
features={[
{
id: 1,
tag: "Step 1",
title: "Create Account",
subtitle: "Quick registration and verification",
description:
"Sign up with your email and complete our KYC verification process. Takes just 5 minutes to get started and verify your identity for compliance.",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/clean-illustration-showing-a-user-signin-1772883708741-2c524d16.png?_wi=1",
imageAlt: "Account signup and verification",
tag: "Step 1", title: "Create Account", subtitle: "Quick registration and verification", description: "Sign up with your email and complete our KYC verification process. Takes just 5 minutes to get started and verify your identity for compliance.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/clean-illustration-showing-a-user-signin-1772883708741-2c524d16.png", imageAlt: "Account signup and verification"
},
{
id: 2,
tag: "Step 2",
title: "Deposit Collateral",
subtitle: "Fund your trading account",
description:
"Deposit your collateral in cryptocurrency or fiat currency. Your collateral is held in secure, institutional-grade custody and used to protect both you and us.",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-a-user-depositing-collat-1772883707156-732dadca.png?_wi=1",
imageAlt: "Collateral deposit interface",
tag: "Step 2", title: "Deposit Collateral", subtitle: "Fund your trading account", description: "Deposit your collateral in cryptocurrency or fiat currency. Your collateral is held in secure, institutional-grade custody and used to protect both you and us.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-a-user-depositing-collat-1772883707156-732dadca.png", imageAlt: "Collateral deposit interface"
},
{
id: 3,
tag: "Step 3",
title: "Borrow Trading Capital",
subtitle: "Access additional funds",
description:
"Choose stocks or cryptocurrencies to borrow. Our platform offers flexible borrowing for various assets with transparent fee structures and risk controls.",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-showing-a-trader-borrowing--1772883707762-a39fd194.png?_wi=1",
imageAlt: "Asset borrowing interface",
tag: "Step 3", title: "Borrow Trading Capital", subtitle: "Access additional funds", description: "Choose stocks or cryptocurrencies to borrow. Our platform offers flexible borrowing for various assets with transparent fee structures and risk controls.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-showing-a-trader-borrowing--1772883707762-a39fd194.png", imageAlt: "Asset borrowing interface"
},
{
id: 4,
tag: "Step 4",
title: "Execute Trades",
subtitle: "Trade in the market",
description:
"Use our advanced trading interface to execute your strategies. Monitor positions in real-time with professional-grade charting and analysis tools.",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-active-trading-execution-1772883707779-350d92a3.png?_wi=1",
imageAlt: "Trading execution dashboard",
tag: "Step 4", title: "Execute Trades", subtitle: "Trade in the market", description: "Use our advanced trading interface to execute your strategies. Monitor positions in real-time with professional-grade charting and analysis tools.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-active-trading-execution-1772883707779-350d92a3.png", imageAlt: "Trading execution dashboard"
},
{
id: 5,
tag: "Step 5",
title: "Profit or Repay",
subtitle: "Close and settle",
description:
"When you close your positions, you either share profits with us or repay the borrowed amount plus a service fee using your collateral. Transparent economics every time.",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/split-illustration-showing-two-outcomes--1772883709281-366a886c.png?_wi=1",
imageAlt: "Profit and loss settlement",
},
tag: "Step 5", title: "Profit or Repay", subtitle: "Close and settle", description: "When you close your positions, you either share profits with us or repay the borrowed amount plus a service fee using your collateral. Transparent economics every time.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/split-illustration-showing-two-outcomes--1772883709281-366a886c.png", imageAlt: "Profit and loss settlement"
}
]}
textboxLayout="default"
useInvertedBackground={false}
@@ -154,23 +143,46 @@ export default function HomePage() {
title="Why Choose LendCapital"
description="We've engineered a platform that balances trader opportunity with institutional-grade risk management. Access to capital, transparency in economics, and security in custody define our lending model."
metrics={[
{
value: "95%+",
title: "Profit share kept by traders on successful trades",
},
{
value: "24/7",
title: "Real-time collateral monitoring and reporting",
},
{ value: "95%+", title: "Profit share kept by traders on successful trades" },
{ value: "24/7", title: "Real-time collateral monitoring and reporting" }
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png?_wi=2"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png"
imageAlt="Institutional security infrastructure"
useInvertedBackground={false}
mediaAnimation="slide-up"
metricsAnimation="opacity"
/>
</div>
<div id="pricing" data-section="pricing">
<div id="benefits" data-section="benefits">
<FeatureCardNineteen
title="Core Platform Features"
description="Built for professional traders who demand institutional capabilities, security, and transparency."
tag="Key Features"
features={[
{
id: 1,
tag: "Capital Access", title: "Amplify Trading Power", subtitle: "Trade with significantly more capital", description: "Don't limit your trading to personal funds. Borrow stocks and cryptocurrencies to scale your strategies and capitalize on market opportunities without locking up your entire net worth.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png", imageAlt: "Trading capital amplification"
},
{
id: 2,
tag: "Flexible Assets", title: "Stocks & Crypto", subtitle: "Borrow diverse asset classes", description: "Access a broad range of borrowable stocks and cryptocurrencies. Our lending pool includes major blue-chip stocks and leading cryptocurrencies, updated daily based on market conditions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-secure-collateral-custod-1772883707319-e35d8d0f.png", imageAlt: "Available assets selection"
},
{
id: 3,
tag: "Profit Sharing", title: "Transparent Economics", subtitle: "Keep the majority when you win", description: "Our profit-sharing model rewards success. You keep 95%+ of profits on winning trades. We only earn when you earn, aligning our incentives completely with yours."
},
{
id: 4,
tag: "Risk Protection", title: "Collateral Safeguards", subtitle: "Protected against market volatility", description: "Your collateral is held in institutional-grade custody with real-time monitoring. Automated risk controls protect both parties from excessive drawdowns and liquidation scenarios."
}
]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="examples" data-section="examples">
<PricingCardFive
title="Trading Economics Examples"
description="See how our profit-sharing and loss-repayment model works with real scenarios."
@@ -180,89 +192,41 @@ export default function HomePage() {
useInvertedBackground={false}
plans={[
{
id: "profitable-trade",
tag: "Profitable Scenario",
price: "$50,000",
period: "borrowed capital",
description:
"You borrow $50,000 in Tesla stock, trade it successfully, and generate $10,000 profit.",
button: {
text: "View Details",
href: "#",
},
featuresTitle: "Your Economics:",
features: [
"Borrowed Capital: $50,000",
"Trading Profit Generated: $10,000",
"Your Profit Share (95%): $9,500",
"Platform Revenue Share (5%): $500",
"Net Gain: +$9,500",
],
id: "profitable-trade", tag: "Profitable Scenario", price: "$50,000", period: "borrowed capital", description: "You borrow $50,000 in Tesla stock, trade it successfully, and generate $10,000 profit.", button: { text: "View Details", href: "#" },
featuresTitle: "Your Economics:", features: [
"Borrowed Capital: $50,000", "Trading Profit Generated: $10,000", "Your Profit Share (95%): $9,500", "Platform Revenue Share (5%): $500", "Net Gain: +$9,500"
]
},
{
id: "losing-trade",
tag: "Loss Scenario",
price: "$50,000",
period: "borrowed capital",
description:
"You borrow $50,000 in cryptocurrency, the market moves against you, and you incur a $5,000 loss.",
button: {
text: "View Details",
href: "#",
},
featuresTitle: "Your Economics:",
features: [
"Borrowed Capital: $50,000",
"Trading Loss Incurred: -$5,000",
"Principal Repaid from Collateral: $50,000",
"Loss Coverage from Collateral: $5,000",
"Platform Service Fee: $250",
"Net Loss: -$5,250",
],
id: "losing-trade", tag: "Loss Scenario", price: "$50,000", period: "borrowed capital", description: "You borrow $50,000 in cryptocurrency, the market moves against you, and you incur a $5,000 loss.", button: { text: "View Details", href: "#" },
featuresTitle: "Your Economics:", features: [
"Borrowed Capital: $50,000", "Trading Loss Incurred: -$5,000", "Principal Repaid from Collateral: $50,000", "Loss Coverage from Collateral: $5,000", "Platform Service Fee: $250", "Net Loss: -$5,250"
]
},
{
id: "break-even-trade",
tag: "Break-Even Scenario",
price: "$50,000",
period: "borrowed capital",
description:
"You borrow $50,000, execute strategies that result in breakeven without profit or loss.",
button: {
text: "View Details",
href: "#",
},
featuresTitle: "Your Economics:",
features: [
"Borrowed Capital: $50,000",
"Trading Profit/Loss: $0",
"Principal Repaid from Collateral: $50,000",
"Platform Service Fee: $0",
"Net Result: Breakeven (no fee charged)",
],
},
id: "break-even-trade", tag: "Break-Even Scenario", price: "$50,000", period: "borrowed capital", description: "You borrow $50,000, execute strategies that result in breakeven without profit or loss.", button: { text: "View Details", href: "#" },
featuresTitle: "Your Economics:", features: [
"Borrowed Capital: $50,000", "Trading Profit/Loss: $0", "Principal Repaid from Collateral: $50,000", "Platform Service Fee: $0", "Net Result: Breakeven (no fee charged)"
]
}
]}
/>
</div>
<div id="about" data-section="about">
<div id="security" data-section="security">
<MetricSplitMediaAbout
tag="Institutional Trust"
title="Security & Compliance First"
description="Your capital and our reputation depend on uncompromising security standards. We employ institutional-grade infrastructure, regulatory compliance, and transparent risk management."
metrics={[
{
value: "SSL 256",
title: "End-to-end encryption for all data",
},
{
value: "SOC 2 Type II",
title: "Independent security audits and certifications",
},
{ value: "SSL 256", title: "End-to-end encryption for all data" },
{ value: "SOC 2 Type II", title: "Independent security audits and certifications" }
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png?_wi=3"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png"
imageAlt="Security infrastructure"
useInvertedBackground={false}
mediaAnimation="slide-up"
metricsAnimation="opacity"
/>
</div>
@@ -271,28 +235,10 @@ export default function HomePage() {
title="Trusted by Hundreds of Professional Traders"
tag="Platform Metrics"
metrics={[
{
id: "1",
value: "$250M+",
description:
"Total trading capital deployed across our platform since inception",
},
{
id: "2",
value: "3,500+",
description: "Active traders managing their capital through our platform",
},
{
id: "3",
value: "98%",
description: "Average collateral retention rate on active accounts",
},
{
id: "4",
value: "14%",
description:
"Average annual returns for profitable traders on our platform",
},
{ id: "1", value: "$250M+", description: "Total trading capital deployed across our platform since inception" },
{ id: "2", value: "3,500+", description: "Active traders managing their capital through our platform" },
{ id: "3", value: "98%", description: "Average collateral retention rate on active accounts" },
{ id: "4", value: "14%", description: "Average annual returns for profitable traders on our platform" }
]}
useInvertedBackground={false}
metricsAnimation="slide-up"
@@ -308,95 +254,23 @@ export default function HomePage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Marcus Chen, Day Trader",
date: "Date: January 2025",
title: "Game-Changing Access to Capital",
quote:
"Before LendCapital, I was limited by my personal capital. Now I can execute strategies that require scale. Their collateral management is transparent and the profit-sharing model is genuinely fair. I've increased my returns 3x since joining.",
tag: "Professional Trader",
avatarSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-photo-of-a-success-1772883706846-6c89ff98.png",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/a-modern-fintech-trading-dashboard-with--1772883710348-83ab50dc.png?_wi=2",
imageAlt: "Trading dashboard interface",
avatarAlt: "Marcus Chen",
id: "1", name: "Marcus Chen, Day Trader", date: "Date: January 2025", title: "Game-Changing Access to Capital", quote: "Before LendCapital, I was limited by my personal capital. Now I can execute strategies that require scale. Their collateral management is transparent and the profit-sharing model is genuinely fair. I've increased my returns 3x since joining.", tag: "Professional Trader", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-photo-of-a-success-1772883706846-6c89ff98.png", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/a-modern-fintech-trading-dashboard-with--1772883710348-83ab50dc.png", imageAlt: "Trading dashboard interface"
},
{
id: "2",
name: "Sarah Williams, Crypto Strategist",
date: "Date: January 2025",
title: "Trust the Process, Trust the Platform",
quote:
"I was skeptical about profit-sharing models, but LendCapital's transparency won me over. Every fee is explained, every trade is tracked, and my collateral is always visible. That's institutional-grade professionalism applied to trading.",
tag: "Institutional Trader",
avatarSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-photo-of-a-success-1772883706881-2b48b6b1.png",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png?_wi=4",
imageAlt: "Security infrastructure",
avatarAlt: "Sarah Williams",
id: "2", name: "Sarah Williams, Crypto Strategist", date: "Date: January 2025", title: "Trust the Process, Trust the Platform", quote: "I was skeptical about profit-sharing models, but LendCapital's transparency won me over. Every fee is explained, every trade is tracked, and my collateral is always visible. That's institutional-grade professionalism applied to trading.", tag: "Institutional Trader", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-photo-of-a-success-1772883706881-2b48b6b1.png", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png", imageAlt: "Security infrastructure"
},
{
id: "3",
name: "David Thompson, Fund Manager",
date: "Date: December 2024",
title: "Superior Risk Management",
quote:
"The automated collateral monitoring and risk controls impressed me immediately. LendCapital has built something institutional traders respect: a platform that protects everyone through smart design, not just wishful thinking.",
tag: "Fund Manager",
avatarSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-of-an-experienced--1772883706409-a65f1393.png",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-secure-collateral-custod-1772883707319-e35d8d0f.png?_wi=2",
imageAlt: "Collateral protection system",
avatarAlt: "David Thompson",
id: "3", name: "David Thompson, Fund Manager", date: "Date: December 2024", title: "Superior Risk Management", quote: "The automated collateral monitoring and risk controls impressed me immediately. LendCapital has built something institutional traders respect: a platform that protects everyone through smart design, not just wishful thinking.", tag: "Fund Manager", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-of-an-experienced--1772883706409-a65f1393.png", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-secure-collateral-custod-1772883707319-e35d8d0f.png", imageAlt: "Collateral protection system"
},
{
id: "4",
name: "Priya Patel, Options Trader",
date: "Date: December 2024",
title: "Exactly What Serious Traders Need",
quote:
"LendCapital gives me the tools, capital, and peace of mind to focus on what I do best: trading. The platform handles the complexity, I handle the strategy. It's a partnership, not a transaction.",
tag: "Options Specialist",
avatarSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-of-a-diverse-femal-1772883706683-f3d69f27.png",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-active-trading-execution-1772883707779-350d92a3.png?_wi=2",
imageAlt: "Trading execution",
avatarAlt: "Priya Patel",
id: "4", name: "Priya Patel, Options Trader", date: "Date: December 2024", title: "Exactly What Serious Traders Need", quote: "LendCapital gives me the tools, capital, and peace of mind to focus on what I do best: trading. The platform handles the complexity, I handle the strategy. It's a partnership, not a transaction.", tag: "Options Specialist", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-of-a-diverse-femal-1772883706683-f3d69f27.png", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/illustration-of-active-trading-execution-1772883707779-350d92a3.png", imageAlt: "Trading execution"
},
{
id: "5",
name: "James Rodriguez, Swing Trader",
date: "Date: November 2024",
title: "Finally, a Lender That Gets It",
quote:
"Most lending platforms feel adversarial. LendCapital aligned their incentives with mine. When I win, we both win. When I lose, they don't punish me—they just apply standard fees. That mutual respect changed everything for me.",
tag: "Swing Trader",
avatarSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-of-a-male-entrepre-1772883707020-b6489133.png",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/a-modern-fintech-trading-dashboard-with--1772883710348-83ab50dc.png?_wi=3",
imageAlt: "Dashboard monitoring",
avatarAlt: "James Rodriguez",
id: "5", name: "James Rodriguez, Swing Trader", date: "Date: November 2024", title: "Finally, a Lender That Gets It", quote: "Most lending platforms feel adversarial. LendCapital aligned their incentives with mine. When I win, we both win. When I lose, they don't punish me—they just apply standard fees. That mutual respect changed everything for me.", tag: "Swing Trader", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-of-a-male-entrepre-1772883707020-b6489133.png", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/a-modern-fintech-trading-dashboard-with--1772883710348-83ab50dc.png", imageAlt: "Dashboard monitoring"
},
{
id: "6",
name: "Emma Zhao, Quantitative Analyst",
date: "Date: November 2024",
title: "The Data Tells the Story",
quote:
"I analyzed LendCapital's economics model mathematically. The profit-sharing structure is elegant and fair. Their security infrastructure is robust. From a quant perspective, this is how modern fintech should be built.",
tag: "Quantitative Analyst",
avatarSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-of-a-female-financ-1772883707066-5a4fdd3f.png",
imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png?_wi=5",
imageAlt: "Secure infrastructure",
avatarAlt: "Emma Zhao",
},
id: "6", name: "Emma Zhao, Quantitative Analyst", date: "Date: November 2024", title: "The Data Tells the Story", quote: "I analyzed LendCapital's economics model mathematically. The profit-sharing structure is elegant and fair. Their security infrastructure is robust. From a quant perspective, this is how modern fintech should be built.", tag: "Quantitative Analyst", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/professional-portrait-of-a-female-financ-1772883707066-5a4fdd3f.png", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/abstract-illustration-of-secure-financia-1772883707096-de3ee782.png", imageAlt: "Secure infrastructure"
}
]}
/>
</div>
@@ -410,66 +284,16 @@ export default function HomePage() {
useInvertedBackground={false}
faqsAnimation="slide-up"
faqs={[
{
id: "1",
title: "What is the minimum collateral required?",
content:
"Minimum collateral requirements vary based on the assets you want to borrow and market conditions. Typically, we require collateral equal to 150% of the borrowed amount. This provides a safety buffer for both parties. Contact our team for specific requirements based on your trading strategy.",
},
{
id: "2",
title: "How does the profit-sharing model work?",
content:
"When you generate profits on borrowed capital, you keep 95% and share 5% with LendCapital. This aligns our interests: we only profit when you profit. The platform earns revenue through the 5% profit share and small service fees when losses occur. If a trade results in zero profit, no fee is charged.",
},
{
id: "3",
title: "What happens if I incur a trading loss?",
content:
"If your trades result in a loss, the borrowed capital and losses are covered by your deposited collateral. You repay the borrowed amount using your collateral, and we charge a small service fee (typically $250-500 depending on loss magnitude) to cover platform costs. Your collateral absorption protects both parties from credit risk.",
},
{
id: "4",
title: "How is my collateral protected?",
content:
"Your collateral is held in segregated, institutional-grade custody by our third-party custodians. We never commingle client collateral with company funds. Your collateral is insured and monitored 24/7. You retain full visibility into your collateral position through our real-time dashboard. Cold storage, multi-signature security, and strict protocols protect all assets.",
},
{
id: "5",
title: "What assets can I borrow?",
content:
"We offer borrowing for a carefully selected list of stocks and cryptocurrencies. Our inventory includes major blue-chip stocks (Apple, Microsoft, Tesla), major cryptocurrencies (Bitcoin, Ethereum), and popular altcoins. Available assets update daily based on market liquidity and platform risk parameters. Check our Markets page for the current borrowing list.",
},
{
id: "6",
title: "How does real-time collateral monitoring work?",
content:
"Our platform continuously monitors your collateral value and borrowing ratio. If market movements cause your collateral to drop below safe thresholds, our system alerts you automatically. Automated controls prevent over-leverage. You can always adjust positions or deposit additional collateral to maintain healthy ratios.",
},
{
id: "7",
title: "What fees should I expect?",
content:
"Primary fees: 5% profit share on winning trades (mandatory), service fees on losing trades ($250-500 typical), and optional borrowing fees for extended holding periods. Withdrawal fees are minimal. No hidden fees or surprise charges. Complete fee transparency is guaranteed. Review our Pricing page for detailed fee structure.",
},
{
id: "8",
title: "Can I close my position at any time?",
content:
"Yes, positions can be closed during market hours (US market hours for stocks, 24/7 for crypto). When you close, profits or losses are calculated immediately, settled using your collateral, and your account is updated. Rapid settlement (within seconds to minutes) lets you move quickly in fast-changing markets.",
},
{
id: "9",
title: "How do you prevent excessive leverage and risk?",
content:
"We employ multiple safeguards: collateral ratio minimums (typically 150%+), real-time leverage monitoring, automated position alerts, maximum position limits, and stress-testing protocols. Our risk engine continuously analyzes correlations and volatility. All controls are transparent and visible to you on your dashboard.",
},
{
id: "10",
title: "What is your compliance and regulatory status?",
content:
"LendCapital operates under full regulatory compliance frameworks. We are registered with relevant financial authorities, conduct regular third-party security audits (SOC 2 Type II certified), perform comprehensive KYC/AML verification, and maintain strict data privacy standards. Your funds are protected by regulatory oversight and insurance programs.",
},
{ id: "1", title: "What is the minimum collateral required?", content: "Minimum collateral requirements vary based on the assets you want to borrow and market conditions. Typically, we require collateral equal to 150% of the borrowed amount. This provides a safety buffer for both parties. Contact our team for specific requirements based on your trading strategy." },
{ id: "2", title: "How does the profit-sharing model work?", content: "When you generate profits on borrowed capital, you keep 95% and share 5% with LendCapital. This aligns our interests: we only profit when you profit. The platform earns revenue through the 5% profit share and small service fees when losses occur. If a trade results in zero profit, no fee is charged." },
{ id: "3", title: "What happens if I incur a trading loss?", content: "If your trades result in a loss, the borrowed capital and losses are covered by your deposited collateral. You repay the borrowed amount using your collateral, and we charge a small service fee (typically $250-500 depending on loss magnitude) to cover platform costs. Your collateral absorption protects both parties from credit risk." },
{ id: "4", title: "How is my collateral protected?", content: "Your collateral is held in segregated, institutional-grade custody by our third-party custodians. We never commingle client collateral with company funds. Your collateral is insured and monitored 24/7. You retain full visibility into your collateral position through our real-time dashboard. Cold storage, multi-signature security, and strict protocols protect all assets." },
{ id: "5", title: "What assets can I borrow?", content: "We offer borrowing for a carefully selected list of stocks and cryptocurrencies. Our inventory includes major blue-chip stocks (Apple, Microsoft, Tesla), major cryptocurrencies (Bitcoin, Ethereum), and popular altcoins. Available assets update daily based on market liquidity and platform risk parameters. Check our Markets page for the current borrowing list." },
{ id: "6", title: "How does real-time collateral monitoring work?", content: "Our platform continuously monitors your collateral value and borrowing ratio. If market movements cause your collateral to drop below safe thresholds, our system alerts you automatically. Automated controls prevent over-leverage. You can always adjust positions or deposit additional collateral to maintain healthy ratios." },
{ id: "7", title: "What fees should I expect?", content: "Primary fees: 5% profit share on winning trades (mandatory), service fees on losing trades ($250-500 typical), and optional borrowing fees for extended holding periods. Withdrawal fees are minimal. No hidden fees or surprise charges. Complete fee transparency is guaranteed. Review our Pricing page for detailed fee structure." },
{ id: "8", title: "Can I close my position at any time?", content: "Yes, positions can be closed during market hours (US market hours for stocks, 24/7 for crypto). When you close, profits or losses are calculated immediately, settled using your collateral, and your account is updated. Rapid settlement (within seconds to minutes) lets you move quickly in fast-changing markets." },
{ id: "9", title: "How do you prevent excessive leverage and risk?", content: "We employ multiple safeguards: collateral ratio minimums (typically 150%+), real-time leverage monitoring, automated position alerts, maximum position limits, and stress-testing protocols. Our risk engine continuously analyzes correlations and volatility. All controls are transparent and visible to you on your dashboard." },
{ id: "10", title: "What is your compliance and regulatory status?", content: "LendCapital operates under full regulatory compliance frameworks. We are registered with relevant financial authorities, conduct regular third-party security audits (SOC 2 Type II certified), perform comprehensive KYC/AML verification, and maintain strict data privacy standards. Your funds are protected by regulatory oversight and insurance programs." }
]}
/>
</div>
@@ -478,115 +302,11 @@ export default function HomePage() {
<FooterBaseCard
logoText="LendCapital"
copyrightText="© 2025 LendCapital. All rights reserved. Empowering traders with institutional capital."
columns={[
{
title: "Product",
items: [
{
label: "How It Works",
href: "#how-it-works",
},
{
label: "Available Markets",
href: "#",
},
{
label: "Pricing",
href: "#pricing",
},
{
label: "Trading Dashboard",
href: "https://app.lendcapital.com/dashboard",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Blog",
href: "#",
},
{
label: "Careers",
href: "#",
},
{
label: "Contact",
href: "#",
},
],
},
{
title: "Resources",
items: [
{
label: "Documentation",
href: "#",
},
{
label: "API Reference",
href: "#",
},
{
label: "FAQ",
href: "#faq",
},
{
label: "Security",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
{
label: "Risk Disclosure",
href: "#",
},
{
label: "Compliance",
href: "#",
},
],
},
{
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",
},
{
label: "GitHub",
href: "https://github.com/lendcapital",
},
],
},
]}
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}
};
export default HomePage;