From 7ea132f3e89401bfc23f3ab545d59c1d3b1f1640 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:28:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d19000..7e16975 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; -import "@/styles/globals.css"; +import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "GameHub - Ultimate Gaming Community Platform", description: "Connect with gamers worldwide, compete in tournaments, and level up your gaming experience on GameHub."}; + title: "GameHub - Ultimate Gaming Community", description: "Join thousands of gamers in the ultimate community hub. Connect with players, discover new games, and compete with the best."}; export default function RootLayout({ children, -- 2.49.1 From 26f36d45a21580fe807eafe7ce8b385202951986 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:28:17 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 95077c7..cf0b377 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -59,7 +59,7 @@ export default function GameHubPage() { tagIcon={Zap} tagAnimation="slide-up" buttons={[ - { text: "Start Playing Free", href: "https://example.com/signup" }, + { text: "Join Now", href: "https://example.com/signup" }, { text: "Explore Games", href: "#games" }, ]} buttonAnimation="blur-reveal" @@ -160,15 +160,15 @@ export default function GameHubPage() { buttonAnimation="blur-reveal" products={[ { - id: "1", name: "Legendary Battle Arena", price: "Free", imageSrc: + id: "1", name: "Legendary Battle Arena", price: "Play Now Free", imageSrc: "http://img.b2bpic.net/free-photo/focus-shot-man-holding-controller-apartment-playing-videogames-smart-tv-display_482257-82235.jpg?_wi=2", imageAlt: "Legendary Battle Arena", initialQuantity: 1, }, { - id: "2", name: "Cosmic Runners", price: "Free", imageSrc: + id: "2", name: "Cosmic Runners", price: "Play Now Free", imageSrc: "http://img.b2bpic.net/free-photo/team-teenage-gamers-plays-multiplayer-video-game-pc-gaming-club_613910-19132.jpg?_wi=1", imageAlt: "Cosmic Runners", initialQuantity: 1, }, { - id: "3", name: "Squad Tactics Online", price: "Free", imageSrc: + id: "3", name: "Squad Tactics Online", price: "Play Now Free", imageSrc: "http://img.b2bpic.net/free-photo/team-teenage-gamers-plays-multiplayer-video-game-pc-gaming-club_613910-19132.jpg?_wi=2", imageAlt: "Squad Tactics Online", initialQuantity: 1, }, ]} -- 2.49.1