6 Commits

Author SHA1 Message Date
a1ea4242a0 Update src/app/page.tsx 2026-03-08 01:48:09 +00:00
dffc20a565 Update src/app/layout.tsx 2026-03-08 01:48:08 +00:00
a2767a70eb Merge version_2 into main
Merge version_2 into main
2026-03-08 01:45:17 +00:00
3fc011bc72 Update src/app/page.tsx 2026-03-08 01:45:13 +00:00
6bdbdebf17 Update src/app/layout.tsx 2026-03-08 01:45:13 +00:00
706a45efb2 Merge version_1 into main
Merge version_1 into main
2026-03-08 01:43:53 +00:00
2 changed files with 12 additions and 41 deletions

View File

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

View File

@@ -100,7 +100,7 @@ export default function GamingPlatform() {
<ProductCardFour
title="Explore Our Gaming Library"
description="Browse through our extensive collection of premium games across all genres. Find your next favorite gaming experience."
tag="1000+ Games"
tag="1000+ Games — Handpicked Daily"
tagIcon={Gamepad2}
tagAnimation="slide-up"
buttons={[{ text: "Browse All", href: "#" }]}
@@ -225,7 +225,7 @@ export default function GamingPlatform() {
animationType="entrance-slide"
buttons={[
{ text: "Get Started Now", href: "#" },
{ text: "Learn More", href: "#" },
{ text: "Explore Games", href: "#" },
]}
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
@@ -268,4 +268,4 @@ export default function GamingPlatform() {
</div>
</ThemeProvider>
);
}
}