import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "@/styles/globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "ROBLOX - Create, Play, Earn", description: "Unleash your imagination on ROBLOX. Build immersive worlds, create thrilling games, and connect with millions of players globally."}; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}