31 lines
823 B
TypeScript
31 lines
823 B
TypeScript
'use client';
|
|
import ProviderComponent from '@/components/layouts/provider-component';
|
|
import 'react-perfect-scrollbar/dist/css/styles.css';
|
|
import '../styles/tailwind.css';
|
|
import { Metadata } from 'next';
|
|
import { Nunito } from 'next/font/google';
|
|
import { Exo_2 } from "next/font/google";
|
|
|
|
const exo2 = Exo_2({
|
|
subsets: ["latin"],
|
|
variable: "--font-exo2",
|
|
weight: ["200", "400"],
|
|
});
|
|
|
|
const nunito = Nunito({
|
|
weight: ['400', '500', '600', '700', '800'],
|
|
subsets: ['latin'],
|
|
display: 'swap',
|
|
variable: '--font-nunito',
|
|
});
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={exo2.variable}>
|
|
<ProviderComponent>{children}</ProviderComponent>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|