Merge version_2 into main #5
@@ -1,72 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "LendCapital - Fintech Lending for Traders | Stock & Crypto Loans",
|
||||
description: "Access trading capital for stocks and cryptocurrency. Borrow, trade, keep profits. Institutional-grade security, transparent profit-sharing, professional risk management.",
|
||||
keywords: "fintech lending, stock lending, crypto lending, trading capital, margin lending, profit sharing, collateral management",
|
||||
metadataBase: new URL("https://lendcapital.com"),
|
||||
alternates: {
|
||||
canonical: "https://lendcapital.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "LendCapital - Trade with Borrowed Capital",
|
||||
description: "Amplify your trading with professional capital. Keep 95% of profits, transparent fees, institutional security.",
|
||||
siteName: "LendCapital",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/a-modern-fintech-trading-dashboard-with--1772883710348-83ab50dc.png",
|
||||
alt: "Advanced fintech trading dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "LendCapital - Fintech Trading Capital",
|
||||
description: "Access stocks and crypto lending for serious traders. Profit-sharing model aligns incentives.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcEjKi0rjKl1F2EXmNDAjHXq3W/a-modern-fintech-trading-dashboard-with--1772883710348-83ab50dc.png",
|
||||
],
|
||||
},
|
||||
};
|
||||
title: "LendCapital - Trading Capital on Demand", description: "Access powerful trading capital without putting up full funds. Trade stocks and crypto with institutional-grade security and transparent profit sharing."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1434,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -284,7 +284,7 @@ const 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: "1", title: "What is the minimum collateral required?", content: "Typically 150% of borrowed amount; contact us for specifics based on your 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." },
|
||||
@@ -309,4 +309,4 @@ const HomePage = () => {
|
||||
);
|
||||
};
|
||||
|
||||
export default HomePage;
|
||||
export default HomePage;
|
||||
|
||||
Reference in New Issue
Block a user