diff --git a/src/app/browse/page.tsx b/src/app/browse/page.tsx index 8bbe002..b866dbd 100644 --- a/src/app/browse/page.tsx +++ b/src/app/browse/page.tsx @@ -95,21 +95,21 @@ export default function BrowsePage() { id: "game-1", name: "Legends Arena", price: "Free", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-warrior-princess_23-2151663248.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-warrior-princess_23-2151663248.jpg?_wi=2", imageAlt: "Legends Arena game", }, { id: "game-2", name: "Puzzle Master Pro", price: "Free", - imageSrc: "http://img.b2bpic.net/free-vector/flat-design-escape-room-invitation_23-2149906790.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/flat-design-escape-room-invitation_23-2149906790.jpg?_wi=2", imageAlt: "Puzzle Master Pro game", }, { id: "game-3", name: "Infinite Runner", price: "Free", - imageSrc: "http://img.b2bpic.net/free-photo/joyful-healthy-woman-earphones-listening-music-while-using-smartphone_8353-6938.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/joyful-healthy-woman-earphones-listening-music-while-using-smartphone_8353-6938.jpg?_wi=2", imageAlt: "Infinite Runner game", }, ]} diff --git a/src/app/categories/page.tsx b/src/app/categories/page.tsx index 3612265..d922dd1 100644 --- a/src/app/categories/page.tsx +++ b/src/app/categories/page.tsx @@ -124,21 +124,21 @@ export default function CategoriesPage() { id: "action-1", name: "Action Adventure Pro", price: "Free", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-warrior-princess_23-2151663248.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-warrior-princess_23-2151663248.jpg?_wi=3", imageAlt: "Action Adventure Pro game", }, { id: "puzzle-1", name: "Brain Challenge Master", price: "Free", - imageSrc: "http://img.b2bpic.net/free-vector/flat-design-escape-room-invitation_23-2149906790.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/flat-design-escape-room-invitation_23-2149906790.jpg?_wi=3", imageAlt: "Brain Challenge Master game", }, { id: "casual-1", name: "Casual Fun Time", price: "Free", - imageSrc: "http://img.b2bpic.net/free-photo/joyful-healthy-woman-earphones-listening-music-while-using-smartphone_8353-6938.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/joyful-healthy-woman-earphones-listening-music-while-using-smartphone_8353-6938.jpg?_wi=3", imageAlt: "Casual Fun Time game", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..56333f4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Libre_Baskerville } 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 { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Knock Games - Discover & Download Android Games", + description: "Browse 50,000+ Android games from the Play Store. Find action, puzzle, strategy, casual games and more. Download games instantly with honest reviews and ratings.", + keywords: "Android games, Play Store games, mobile games, game discovery, free games, game reviews", + metadataBase: new URL("https://knockgames.com"), + alternates: { + canonical: "https://knockgames.com", + }, + openGraph: { + title: "Knock Games - Discover Amazing Android Games", + description: "Your ultimate destination for discovering and downloading Android games from the Play Store.", + url: "https://knockgames.com", + siteName: "Knock Games", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/hand-drawn-mobile-app-concept_23-2148119484.jpg", + alt: "Knock Games - Android Games Discovery Platform", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Knock Games - Discover Amazing Android Games", + description: "Your ultimate destination for discovering and downloading Android games from the Play Store.", + images: ["http://img.b2bpic.net/free-vector/hand-drawn-mobile-app-concept_23-2148119484.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -32,7 +65,9 @@ export default function RootLayout({ return ( - + {children}