From f17f23e48ebde680e53b7df575a06c3d9340215d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:15:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7695695..b83163c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "IndiFunded - Get Funded Trading Account | Prove Your Skills", description: "Trade with ₹5L funded account without risking your capital. Prove your trading skills, pass our challenge, and earn 70% profit split. Join thousands of successful traders.", keywords: "funded trading account, trading challenge, Indian stock market, profit sharing, Bank Nifty, Nifty options, trading platform, ₹5 lakh account", metadataBase: new URL("https://indifunded.com"), - alternates: { - canonical: "https://indifunded.com"}, - openGraph: { - title: "IndiFunded - Funded Trading Accounts for Indian Traders", description: "Trade independently with up to ₹5L funded account. 70% profit split, zero risk loss protection, and guaranteed 24-hour payouts.", url: "https://indifunded.com", siteName: "IndiFunded", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcAuJa8QXP44x6r46dMnY9vYtR/a-modern-trading-dashboard-interface-sho-1772881828915-d7c0d933.png", alt: "IndiFunded Trading Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "IndiFunded - Funded Trading Accounts", description: "Prove your skills, get funded, start earning. Up to ₹5L trading account with 70% profit split.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcAuJa8QXP44x6r46dMnY9vYtR/a-modern-trading-dashboard-interface-sho-1772881828915-d7c0d933.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "IndiFunded", description: "Take the Challenge, Get Funded, Start Trading!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}