From 5e7da185c80a2705a8b93cb1ce47c7bf5de60473 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:08:55 +0000 Subject: [PATCH 1/4] Update src/app/games/page.tsx --- src/app/games/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/games/page.tsx b/src/app/games/page.tsx index ec5a100..1020453 100644 --- a/src/app/games/page.tsx +++ b/src/app/games/page.tsx @@ -53,7 +53,7 @@ export default function GamesPage() { id: "game-1", name: "NEXUS Strike: Tactical Warfare", price: "$59.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnofHbMOAWWIz895gXqtfWEwoy/call-of-duty-style-tactical-shooter-game-1773238050609-0dafc4b0.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnofHbMOAWWIz895gXqtfWEwoy/call-of-duty-style-tactical-shooter-game-1773238050609-0dafc4b0.png?_wi=2", imageAlt: "NEXUS Strike Tactical Warfare game cover", initialQuantity: 1, }, @@ -61,7 +61,7 @@ export default function GamesPage() { id: "game-2", name: "NEXUS Nexus: Battle Royale", price: "Free to Play", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnofHbMOAWWIz895gXqtfWEwoy/multiplayer-battle-royale-game-promotion-1773238048512-539c5e44.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnofHbMOAWWIz895gXqtfWEwoy/multiplayer-battle-royale-game-promotion-1773238048512-539c5e44.png?_wi=2", imageAlt: "NEXUS Nexus Battle Royale game cover", initialQuantity: 1, }, @@ -69,7 +69,7 @@ export default function GamesPage() { id: "game-3", name: "NEXUS Chronicles: Campaign", price: "$49.99", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnofHbMOAWWIz895gXqtfWEwoy/campaign-story-driven-game-art-featuring-1773238054687-1f3ce024.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnofHbMOAWWIz895gXqtfWEwoy/campaign-story-driven-game-art-featuring-1773238054687-1f3ce024.png?_wi=2", imageAlt: "NEXUS Chronicles Campaign game cover", initialQuantity: 1, }, -- 2.49.1 From fc4534c9f10717713850b6e55fd9f3c38d0308d7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:08:56 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 47 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..72f61d2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,65 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "NEXUS GAMES - Next-Gen Competitive Gaming", + description: "Experience next-generation competitive gaming with NEXUS GAMES. Award-winning multiplayer titles, esports infrastructure, and a global community of gamers.", + keywords: "gaming, multiplayer games, esports, competitive gaming, tactical shooter, battle royale, game studio", + openGraph: { + title: "NEXUS GAMES - Experience the Future of Gaming", + description: "Next-gen competitive gaming platform with millions of active players worldwide.", + url: "https://nexusgames.com", + siteName: "NEXUS GAMES", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnofHbMOAWWIz895gXqtfWEwoy/epic-gaming-arena-with-high-tech-environ-1773238050578-abf43a8e.png", + alt: "NEXUS GAMES Epic Gaming Arena", + } + ], + }, + twitter: { + card: "summary_large_image", + title: "NEXUS GAMES - Next-Gen Competitive Gaming", + description: "Experience the future of competitive gaming. 50M+ active players, 180+ countries.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnofHbMOAWWIz895gXqtfWEwoy/epic-gaming-arena-with-high-tech-environ-1773238050578-abf43a8e.png" + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +68,9 @@ export default function RootLayout({ return ( - + {children}