From 6bdbdebf17a0a797d4bbd70602299efaf9d73823 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 01:45:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++++------------------------------------- 1 file changed, 8 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b46661b..32fdbda 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville, Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Inter } from "next/font/google"; +import "../styles/globals.css"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Javokhcx Games - Play 1000+ Premium Games Online", description: "Discover and play thousands of amazing games on Javokhcx Games platform. Stream, download, and enjoy action, puzzle, racing, sports, RPG and strategy games.", keywords: "gaming platform, online games, game streaming, action games, puzzle games, racing games, sports games, RPG games", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Javokhcx Games - Your Ultimate Gaming Hub", description: "Join millions of gamers on Javokhcx Games. Play over 1000 premium games across all genres with stunning graphics and immersive gameplay.", type: "website", siteName: "Javokhcx Games", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Adsj4vgHjTCzOafE2CqXNM7fq3/a-dramatic-high-quality-gaming-screensho-1772934088472-531e6f21.png", alt: "Javokhcx Games Featured Game"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Javokhcx Games - Gaming Platform", description: "Explore and play 1000+ games. Join our gaming community today.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Adsj4vgHjTCzOafE2CqXNM7fq3/a-dramatic-high-quality-gaming-screensho-1772934088472-531e6f21.png"], - }, -}; + title: "Javokhcx Games - Gaming Platform", description: "Discover premium games, join our community, and experience endless gaming entertainment."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}