aboutsummaryrefslogtreecommitdiffstats
path: root/app/layout.js
blob: 45773fb0d25e1b8ded6030193f078b36479416df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import '../src/styles/globals.css';
import { Inter } from 'next/font/google';
import { AuthProvider } from './components/AuthContext';

const inter = Inter({
    subsets: ['latin'],
    variable: '--font-inter',
});

export default function RootLayout({ children }) {
    return (
        <html lang="en">
            <AuthProvider>
                <body className={`${inter.variable} font-sans bg-black h-screen`}>
                    {children}
                </body>
            </AuthProvider>
        </html>
    );
}