Spaces:
Sleeping
Sleeping
| import type { Metadata } from "next"; | |
| import "./globals.css"; | |
| export const metadata: Metadata = { | |
| title: "Minecraft Clone", | |
| description: "A Minecraft clone built with Next.js, Three.js, and Zustand", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="en" suppressHydrationWarning> | |
| <body className="overflow-hidden m-0 p-0"> | |
| {children} | |
| </body> | |
| </html> | |
| ); | |
| } | |