Spaces:
Running
Running
import type { Metadata } from "next"; | |
import { Inter } from "next/font/google"; | |
import { ThemeProvider } from "next-themes"; | |
import "@/assets/globals.css"; | |
const inter = Inter({ subsets: ["latin"] }); | |
export const metadata: Metadata = { | |
title: "Zero GPU Spaces | Hugging Face", | |
}; | |
export default function RootLayout({ | |
children, | |
}: Readonly<{ | |
children: React.ReactNode; | |
}>) { | |
return ( | |
<html lang="en"> | |
<body className={inter.className}> | |
<ThemeProvider attribute="class">{children}</ThemeProvider> | |
</body> | |
</html> | |
); | |
} | |