import type React from "react" import type { Metadata } from "next" import { Orbitron } from "next/font/google" import "./globals.css" const orbitron = Orbitron({ subsets: ["latin"], weight: ["400", "500", "600", "700", "800", "900"], display: "swap", }) export const metadata: Metadata = { title: "v0 App", description: "Created with v0", generator: "v0.dev", } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ) }