From eac17cb830acbd457e2ad7fe86a7fd6bd3f4139d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:53:11 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 67 +++++----------------------------------------- 1 file changed, 7 insertions(+), 60 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fb091fb..138ddaa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}