20 lines
404 B
TypeScript
20 lines
404 B
TypeScript
import { Providers } from './next-providers'
|
|
import { fonts } from './fonts'
|
|
import { Inter } from 'next/font/google'
|
|
|
|
const inter = Inter({ subsets: ['latin'] })
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode,
|
|
}) {
|
|
return (
|
|
<html lang='en' className={fonts.rubik.variable}>
|
|
<body>
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|