From 2ce9c341d75f5708f67117748a14466d86f84e01 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:51:02 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++++++----------------------------------- 1 file changed, 10 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 173a0d9..8d2b567 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Fredoka } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], +const fredoka = Fredoka({ + variable: "--font-fredoka", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "GameVault - Your Ultimate Gaming Store", description: "Discover thousands of games across all genres on GameVault. Shop the latest releases, exclusive deals, and build your perfect gaming library today.", keywords: "game store, buy games, video games, PC games, gaming platform, game deals", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "GameVault - Discover Your Next Favorite Game", description: "The ultimate gaming store with thousands of titles, competitive prices, and 24/7 support.", type: "website", siteName: "GameVault", images: [ - { - url: "http://img.b2bpic.net/free-photo/scene-professional-esports-gamer-profile-colored-with-red-blue-light-generative-ai_191095-1967.jpg", alt: "GameVault Gaming Store"}, - ], - }, - twitter: { - card: "summary_large_image", title: "GameVault - Your Ultimate Gaming Store", description: "Browse and buy games from the best gaming platform. Thousands of titles at your fingertips.", images: ["http://img.b2bpic.net/free-photo/scene-professional-esports-gamer-profile-colored-with-red-blue-light-generative-ai_191095-1967.jpg"], - }, -}; + title: "GameVault - Your Ultimate Gaming Store", description: "Discover and purchase thousands of games across all genres. Find your next favorite game on GameVault."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +