diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0592349..f7ab5ac 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "GameHub - Play Epic Games & Join the Community", description: "Discover millions of games, connect with players worldwide, and compete in tournaments. Join 50M+ gamers on GameHub today.", keywords: "gaming, games, esports, multiplayer, game community, tournaments, streaming", metadataBase: new URL("https://gamehub.com"), - alternates: { - canonical: "https://gamehub.com" - }, - openGraph: { - title: "GameHub - The Home for Gaming", description: "Play epic games, join communities, and compete globally with 50M+ players.", url: "https://gamehub.com", siteName: "GameHub", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ajoo0KN9cEU17ylPTf1Xc44jjP/an-epic-gaming-scene-with-glowing-neon-c-1773115603764-f19a1a9e.png", alt: "An epic gaming scene with glowing neon colors, futuristic gaming environment with screens displaying" - } - ] - }, - twitter: { - card: "summary_large_image", title: "GameHub - Play & Connect", description: "Join the gaming revolution on GameHub.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ajoo0KN9cEU17ylPTf1Xc44jjP/an-epic-gaming-scene-with-glowing-neon-c-1773115603764-f19a1a9e.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "GameHub - Play Free Games Online", description: "Discover epic adventures, join the community, and compete globally on GameHub"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -