From 795ec69a84078139be4aeae71cf997c383b07a99 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 07:01:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1431 +------------------------------------------- 1 file changed, 7 insertions(+), 1424 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e5468bb..c88aa2c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1436 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CricketBet - Live Cricket Betting Platform", - description: "Place live cricket bets with real-time odds, live score updates, and secure wallet management. Join India's leading cricket betting platform today.", - keywords: "cricket betting, live odds, cricket bets, online cricket betting, sports betting, live cricket, cricket odds", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "CricketBet - Live Cricket Betting", - description: "Experience real-time cricket betting with instant odds and live score tracking.", - type: "website", - siteName: "CricketBet", - images: [ - { - url: "http://img.b2bpic.net/free-photo/professional-baseball-players_654080-2177.jpg", - alt: "Live Cricket Betting Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "CricketBet - Live Cricket Betting", - description: "Real-time cricket odds and instant betting on live matches.", - images: ["http://img.b2bpic.net/free-photo/professional-baseball-players_654080-2177.jpg"], - }, -}; + title: "CricketBet - Live Cricket Betting Platform", description: "Experience real-time cricket match odds and instant betting with live score tracking. Join thousands of bettors on India's fastest cricket betting platform."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -