From 0b1d6bd8ed13e254990146191046279ec4017ccd Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 12:34:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 71 +++++----------------------------------------- 1 file changed, 7 insertions(+), 64 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 252a250..0f7f66b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CricketLive - Live Cricket Scores & Match Information", - description: "Get live cricket scores, ball-by-ball commentary, upcoming matches, player statistics, and breaking cricket news. Real-time updates for all international and domestic cricket matches.", - keywords: "live cricket scores, cricket live, match updates, cricket news, player statistics, cricket information", - metadataBase: new URL("https://cricketlive.com"), - alternates: { - canonical: "https://cricketlive.com", - }, - openGraph: { - title: "CricketLive - Live Cricket Scores & Updates", - description: "Your ultimate cricket companion for live scores, analysis, and real-time match updates", - url: "https://cricketlive.com", - siteName: "CricketLive", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/vibrant-cricket-stadium-during-daytime-m-1772886597456-dd789268.png", - alt: "CricketLive - Live Cricket Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "CricketLive - Live Cricket Scores", - description: "Follow live cricket matches with real-time scores and expert commentary", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/vibrant-cricket-stadium-during-daytime-m-1772886597456-dd789268.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CricketLive - Live Cricket Scores & Updates", description: "Get instant access to live scores, player statistics, match analysis, and breaking cricket news from around the world."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}