From 38b03774e3ce91d57904e2869f6ed4825600161a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:07:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2f05966..1a0b45d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Punjab Live TV Canada - Entertainment & Infotainment", - description: "Watch live streaming of Winnipeg events, inspiring podcasts, and multilingual entertainment content. Your connection between Punjab and Canada.", - keywords: "Punjab Live TV, Canada entertainment, infotainment, podcasts, Winnipeg events, multilingual content", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Punjab Live TV Canada - Entertainment & Infotainment", - description: "Watch live streaming of Winnipeg events, inspiring podcasts, and multilingual entertainment content.", - type: "website", - siteName: "Punjab Live TV Canada", - images: [ - { - url: "http://img.b2bpic.net/free-photo/canada-day-celebration-with-maple-leaf-symbol_23-2151440521.jpg", - alt: "Punjab Live TV Canada", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Punjab Live TV Canada", - description: "Entertainment & Infotainment for Punjab-Canadian Communities", - images: ["http://img.b2bpic.net/free-photo/canada-day-celebration-with-maple-leaf-symbol_23-2151440521.jpg"], - }, -}; + title: "Punjab Live TV Canada", description: "Your gateway to entertainment, information, and cultural connection"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}