From 22a0e6ce3a9cc942aaf64aaa80a16f65adbecdb6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:40:09 +0000 Subject: [PATCH 1/6] Update src/app/create-challenge/page.tsx --- src/app/create-challenge/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/create-challenge/page.tsx b/src/app/create-challenge/page.tsx index 4d2c646..74814b6 100644 --- a/src/app/create-challenge/page.tsx +++ b/src/app/create-challenge/page.tsx @@ -73,15 +73,15 @@ export default function CreateChallengePage() { background={{ variant: "sparkles-gradient" }} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-vector/gradient-pack-twitch-panels_23-2149200772.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/gradient-pack-twitch-panels_23-2149200772.jpg?_wi=2", imageAlt: "competitive gaming battle arena interface", }, { - imageSrc: "http://img.b2bpic.net/free-photo/sunset-projector-lamp-product-backdrop_53876-108123.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/sunset-projector-lamp-product-backdrop_53876-108123.jpg?_wi=2", imageAlt: "creator clash competition showcase", }, { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-watching-match-waiting-goal_329181-16802.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-watching-match-waiting-goal_329181-16802.jpg?_wi=2", imageAlt: "gaming tournament winner celebration", }, ]} @@ -120,7 +120,7 @@ export default function CreateChallengePage() { icon: ZapIcon, }, ]} - imageSrc="http://img.b2bpic.net/free-vector/artificial-intelligence-youtube-channel-art_23-2150363645.jpg" + imageSrc="http://img.b2bpic.net/free-vector/artificial-intelligence-youtube-channel-art_23-2150363645.jpg?_wi=2" imageAlt="workflow steps process diagram" imagePosition="right" textboxLayout="default" @@ -156,7 +156,7 @@ export default function CreateChallengePage() { icon: Upload, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/hipster-with-smartphone-before-new-year-party_23-2147720560.jpg" + imageSrc="http://img.b2bpic.net/free-photo/hipster-with-smartphone-before-new-year-party_23-2147720560.jpg?_wi=2" imageAlt: "daily bonus reward celebration" imagePosition="left" textboxLayout="default" -- 2.49.1 From 23435bb52677776f3847b0e2232945a4e54c6d54 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:40:09 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..da174e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,57 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "SkillFight Arena - Competitive Skill Battles & Gaming", + description: "Challenge creators in skill duels. Vote for winners, earn coins, climb leaderboards. Competitive gaming platform with tournaments, prizes, and real rewards.", + keywords: "competitive gaming, skill battles, creator battles, tournament gaming, esports, gaming competition, voting platform", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "SkillFight Arena - Battle. Vote. Win.", + description: "Join the ultimate competitive skill battle platform. Challenge creators, vote for winners, earn coins and climb the leaderboard.", + url: "https://skillfightarena.com", + siteName: "SkillFight Arena", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/gradient-pack-twitch-panels_23-2149200772.jpg", + alt: "SkillFight Arena - Competitive Battle Platform", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "SkillFight Arena - Competitive Skill Battles", + description: "Battle creators, vote for winners, earn coins. The ultimate competitive gaming platform.", + images: ["http://img.b2bpic.net/free-vector/gradient-pack-twitch-panels_23-2149200772.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +60,9 @@ export default function RootLayout({ return ( - + {children}