Merge version_3 into main #5

Merged
bender merged 3 commits from version_3 into main 2026-03-05 00:51:07 +00:00
3 changed files with 13 additions and 38 deletions

View File

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

View File

@@ -245,4 +245,4 @@ export default function GameVaultPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-fredoka), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter), sans-serif;
font-family: var(--font-fredoka), sans-serif;
}