3 Commits

Author SHA1 Message Date
de12ceef9e Update src/app/page.tsx 2026-03-05 21:40:41 +00:00
e71f7acf79 Update src/app/layout.tsx 2026-03-05 21:40:40 +00:00
7b8d32a15b Merge version_1 into main
Merge version_1 into main
2026-03-05 21:08:12 +00:00
2 changed files with 8 additions and 46 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google"; import "@/styles/globals.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "ROBLOX - Create, Play, Build the Metaverse", description: "Unleash your imagination on ROBLOX. Create immersive games, build virtual worlds, and connect with millions of players. Start creating for free today.", keywords: "Roblox, game creation, gaming platform, virtual worlds, game development, metaverse, online games, creative gaming", metadataBase: new URL("https://www.roblox.com"), title: "ROBLOX - Create, Play, Earn", description: "Unleash your imagination on ROBLOX. Build immersive worlds, create thrilling games, and connect with millions of players globally."};
alternates: {
canonical: "https://www.roblox.com"},
openGraph: {
title: "ROBLOX - Create, Play, Build the Metaverse", description: "Unleash your imagination on ROBLOX. Create immersive games, build virtual worlds, and connect with millions of players.", url: "https://www.roblox.com", siteName: "ROBLOX", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXh6Q9ikDhVuL94nONEpErjgVP/a-stunning-immersive-roblox-game-world-s-1772744755243-0aba7a93.png", alt: "ROBLOX Gaming Platform"},
],
},
twitter: {
card: "summary_large_image", title: "ROBLOX - Create, Play, Build the Metaverse", description: "Unleash your imagination on ROBLOX. Create immersive games and connect with millions.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXh6Q9ikDhVuL94nONEpErjgVP/a-stunning-immersive-roblox-game-world-s-1772744755243-0aba7a93.png"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -46,7 +46,7 @@ export default function LandingPage() {
logoText="ROBLOX" logoText="ROBLOX"
description="Unleash your imagination. Build immersive worlds, create thrilling games, and connect with millions of players across the globe. Experience the ultimate platform for creativity and play." description="Unleash your imagination. Build immersive worlds, create thrilling games, and connect with millions of players across the globe. Experience the ultimate platform for creativity and play."
buttons={[ buttons={[
{ text: "Start Creating", href: "#create" }, { text: "Create Your First Game Free", href: "#create" },
{ text: "Explore Games", href: "#games" } { text: "Explore Games", href: "#games" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"