multipool-ta-fe/app/layout.tsx

36 lines
762 B
TypeScript
Raw Normal View History

2026-04-15 23:38:26 +00:00
import { Geist, Geist_Mono, Inter } from "next/font/google"
import "./globals.css"
import { ThemeProvider } from "@/components/theme-provider"
import { cn } from "@/lib/utils"
const inter = Inter({ subsets: ["latin"], variable: "--font-sans" })
const fontMono = Geist_Mono({
subsets: ["latin"],
variable: "--font-mono",
})
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html
lang="en"
suppressHydrationWarning
className={cn(
"antialiased",
fontMono.variable,
"font-sans",
inter.variable
)}
>
<body className="bg-black">
<ThemeProvider defaultTheme="dark">{children}</ThemeProvider>
</body>
</html>
)
}