Merge version_2 into main #2
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user