vendaweb-api/src/app/layout.tsx

35 lines
684 B
TypeScript
Raw Normal View History

2025-10-08 04:19:15 +00:00
import type { Metadata } from 'next';
import { Inter, JetBrains_Mono } from 'next/font/google';
2025-10-08 04:19:15 +00:00
import './globals.css';
2025-10-08 03:09:52 +00:00
const inter = Inter({
variable: '--font-inter',
2025-10-08 04:19:15 +00:00
subsets: ['latin'],
2025-10-08 03:09:52 +00:00
});
const jetbrainsMono = JetBrains_Mono({
variable: '--font-jetbrains-mono',
2025-10-08 04:19:15 +00:00
subsets: ['latin'],
2025-10-08 03:09:52 +00:00
});
export const metadata: Metadata = {
2025-10-08 04:19:15 +00:00
title: 'DRE- Gerencial',
description: 'DRE- Gerencial',
2025-10-08 03:09:52 +00:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
2025-10-08 04:19:15 +00:00
<html lang="pt-BR">
2025-10-08 03:09:52 +00:00
<body
className={`${inter.variable} ${jetbrainsMono.variable} antialiased`}
2025-10-08 03:09:52 +00:00
>
{children}
</body>
</html>
);
}