6 Commits

Author SHA1 Message Date
09fed4a9e5 Update src/app/page.tsx 2026-03-05 18:15:35 +00:00
510c1df80f Update src/app/games/page.tsx 2026-03-05 18:15:35 +00:00
98657c2836 Update src/app/create/page.tsx 2026-03-05 18:15:34 +00:00
67d355155f Update src/app/community/page.tsx 2026-03-05 18:15:34 +00:00
c6d1e38ecc Switch to version 1: modified src/app/page.tsx 2026-03-05 18:00:33 +00:00
821c29b116 Switch to version 1: modified src/app/layout.tsx 2026-03-05 18:00:33 +00:00

View File

@@ -6,26 +6,43 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "GameVerse - Create, Play, Share Games | Multiplayer Gaming Platform", description: "Join 200M+ players on GameVerse. Create your own games without coding, play unlimited multiplayer experiences, and monetize your creations. Start creating today!", keywords: "multiplayer games, game creation platform, Roblox alternative, create games, gaming platform, indie games, game development", metadataBase: new URL("https://gameverse.com"),
title: "GameVerse - Create, Play, Share Games | Multiplayer Gaming Platform",
description: "Join 200M+ players on GameVerse. Create your own games without coding, play unlimited multiplayer experiences, and monetize your creations. Start creating today!",
keywords: "multiplayer games, game creation platform, Roblox alternative, create games, gaming platform, indie games, game development",
metadataBase: new URL("https://gameverse.com"),
alternates: {
canonical: "https://gameverse.com"},
canonical: "https://gameverse.com",
},
openGraph: {
title: "GameVerse - The Ultimate Multiplayer Gaming Platform", description: "Create amazing games, play with millions, and build your gaming empire. Join GameVerse today!", url: "https://gameverse.com", siteName: "GameVerse", type: "website", images: [
title: "GameVerse - The Ultimate Multiplayer Gaming Platform",
description: "Create amazing games, play with millions, and build your gaming empire. Join GameVerse today!",
url: "https://gameverse.com",
siteName: "GameVerse",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXIoLKsrLFOutF3FKwumh92EWa/a-vibrant-immersive-3d-gaming-world-show-1772732747362-7c78772d.png", alt: "GameVerse platform showcase"},
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXIoLKsrLFOutF3FKwumh92EWa/a-vibrant-immersive-3d-gaming-world-show-1772732747362-7c78772d.png",
alt: "GameVerse platform showcase",
},
],
},
twitter: {
card: "summary_large_image", title: "GameVerse - Create & Play Multiplayer Games", description: "Join 200M+ players creating and playing incredible games on GameVerse", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXIoLKsrLFOutF3FKwumh92EWa/a-vibrant-immersive-3d-gaming-world-show-1772732747362-7c78772d.png"],
card: "summary_large_image",
title: "GameVerse - Create & Play Multiplayer Games",
description: "Join 200M+ players creating and playing incredible games on GameVerse",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXIoLKsrLFOutF3FKwumh92EWa/a-vibrant-immersive-3d-gaming-world-show-1772732747362-7c78772d.png",
],
},
robots: {
index: true,
@@ -1417,4 +1434,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}