Update src/app/layout.tsx

This commit is contained in:
2026-03-07 11:53:11 +00:00
parent 569e2df556
commit eac17cb830

View File

@@ -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>
);
}
}