9 Commits

Author SHA1 Message Date
b2faac510f Update src/app/page.tsx 2026-03-07 11:56:28 +00:00
48ad640d17 Update src/app/layout.tsx 2026-03-07 11:56:27 +00:00
66fc052ae6 Merge version_2 into main
Merge version_2 into main
2026-03-07 11:53:16 +00:00
e92a86c6bd Update src/app/page.tsx 2026-03-07 11:53:12 +00:00
eac17cb830 Update src/app/layout.tsx 2026-03-07 11:53:11 +00:00
569e2df556 Merge version_1 into main
Merge version_1 into main
2026-03-07 11:47:42 +00:00
bdf3a62bf5 Merge version_1 into main
Merge version_1 into main
2026-03-07 11:46:30 +00:00
940892cf1e Merge version_1 into main
Merge version_1 into main
2026-03-07 11:44:26 +00:00
052cf7ecb7 Merge version_1 into main
Merge version_1 into main
2026-03-07 11:43:10 +00:00
2 changed files with 9 additions and 62 deletions

View File

@@ -1,72 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "LendCapital - Fintech Lending for Traders | Stock & Crypto Loans", title: "LendCapital - Trading Capital Access", description: "Access powerful trading capital without putting up full funds. Trade stocks and crypto, keep the majority of your profits."};
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",
],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1434,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -92,7 +92,7 @@ const HomePage = () => {
logoText="LENDCAPITAL" 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." 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={[ buttons={[
{ text: "Apply for Trading Capital", href: "https://app.lendcapital.com/apply" }, { text: "Get Funded Now", href: "https://app.lendcapital.com/apply" },
{ text: "Learn How It Works", href: "#how-it-works" } { text: "Learn How It Works", href: "#how-it-works" }
]} ]}
slides={[ slides={[
@@ -309,4 +309,4 @@ const HomePage = () => {
); );
}; };
export default HomePage; export default HomePage;