Spaces:
Running
Running
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 ( | |
<html lang="en" className={orbitron.className}> | |
<body>{children}</body> | |
</html> | |
) | |
} | |