From 0f8ec9ab7c18cfa56b6102cb2749529a2eb9dcf5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:46:24 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1404 +------------------------------------------- 1 file changed, 14 insertions(+), 1390 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 933edfc..cb75e71 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1413 +1,38 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +import { ServiceWrapper } from "@/providers"; +import { Tag } from "@/components"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Roblox Game Studio - Creating Immersive Gaming Experiences", description: "Discover extraordinary Roblox games created by our award-winning studio. Join millions of players in thriving communities and creative worlds.", keywords: "Roblox games, game studio, game development, creative gaming, immersive experiences", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Roblox Game Studio - Creating Immersive Gaming Experiences", description: "Discover extraordinary Roblox games created by our award-winning studio.", type: "website", siteName: "Roblox Game Studio", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhAfRaQSq2Mpv9tFzynsyMoLPf/a-sleek-modern-roblox-game-studio-enviro-1773034593835-ed9a60dc.png", alt: "Roblox Game Studio - Hero Showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Roblox Game Studio - Creating Immersive Gaming Experiences", description: "Discover extraordinary Roblox games created by our award-winning studio.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhAfRaQSq2Mpv9tFzynsyMoLPf/a-sleek-modern-roblox-game-studio-enviro-1773034593835-ed9a60dc.png"], - }, -}; + title: "Roblox Game Studio - Creating Extraordinary Gaming Experiences", description: "Discover immersive games and creative worlds built by our talented team. Explore adventure quests, simulations, and competitive gameplay."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +