Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 20:07:23 +00:00
2 changed files with 12 additions and 55 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1422,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -67,8 +67,8 @@ export default function HomePage() {
title="Connecting Cultures Through Entertainment"
description="Punjab Live TV Canada is your premier multilingual entertainment and infotainment channel serving communities across North America. We bring you live streaming of local Winnipeg events, engaging podcasts featuring inspiring personalities, and culturally rich entertainment content that celebrates both Punjab and Canada."
metrics={[
{ value: "24/7", title: "Live Streaming Available" },
{ value: "50+", title: "Podcast Episodes" },
{ value: "24/7", title: "Live Streaming—Always On" },
{ value: "50+", title: "New Episodes Monthly" },
]}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-friends-with-hot-drinks_23-2149327319.jpg?_wi=1"
imageAlt="Diverse community gathering"
@@ -85,11 +85,9 @@ export default function HomePage() {
tag="Coming Up"
tagAnimation="slide-up"
metrics={[
{
id: "event-1", value: "Every Weekend", title: "Live Broadcasts", description: "Featuring local performers and artists", imageSrc:
{ id: "event-1", value: "Every Weekend", title: "Live Broadcasts", description: "Featuring local performers and artists", imageSrc:
"http://img.b2bpic.net/free-photo/magic-look-handsome-young-man-black-clothes-sitting-chair-near-dark-room-with-light_146671-19725.jpg?_wi=1", imageAlt: "Winnipeg live event performance"},
{
id: "event-2", value: "Community Focus", title: "Cultural Celebrations", description: "Showcasing Punjab-Canadian heritage", imageSrc:
{ id: "event-2", value: "Community Focus", title: "Cultural Celebrations", description: "Showcasing Punjab-Canadian heritage", imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-friends-with-hot-drinks_23-2149327319.jpg?_wi=2", imageAlt: "Cultural celebration event"},
]}
animationType="slide-up"
@@ -211,4 +209,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}