From 4d2b3e427f2d6aac6744200cd80927e2ec675a1a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:25:44 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 36 ++++++------------------------------ 1 file changed, 6 insertions(+), 30 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7892e6f..052bfdc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Rozowy - Live Gaming Streamer | Watch on Kick", description: "Join Rozowy's epic gaming streams on Kick. Watch live gameplay, community moments, and amazing highlights. Connect with our gaming community today!", keywords: "streamer, gaming, Kick, live gaming, esports", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Rozowy - Live Gaming Streamer", description: "Join the stream! Watch epic gaming content and connect with an amazing community on Kick.", type: "website", siteName: "Rozowy"}, - twitter: { - card: "summary_large_image", title: "Rozowy - Live Gaming Streamer", description: "Watch me stream live on Kick!"}, -}; + title: "Rozowy - Live Gaming Streams", description: "Join Rozowy's live gaming streams on Kick. Watch epic moments, connect with the community, and experience next-level entertainment."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}