36 lines
750 B
TypeScript
36 lines
750 B
TypeScript
import type { Metadata } from 'next';
|
|
import { Inter, JetBrains_Mono } from 'next/font/google';
|
|
import './globals.css';
|
|
import '../lib/mui-license'; // Aplicar licença do MUI X Premium
|
|
|
|
const inter = Inter({
|
|
variable: '--font-inter',
|
|
subsets: ['latin'],
|
|
});
|
|
|
|
const jetbrainsMono = JetBrains_Mono({
|
|
variable: '--font-jetbrains-mono',
|
|
subsets: ['latin'],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'DRE- Gerencial',
|
|
description: 'DRE- Gerencial',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="pt-BR">
|
|
<body
|
|
className={`${inter.variable} ${jetbrainsMono.variable} antialiased`}
|
|
>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|