vendaweb-api/src/app/layout.tsx

35 lines
677 B
TypeScript
Raw Normal View History

2025-10-08 04:19:15 +00:00
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
import './globals.css';
2025-10-08 03:09:52 +00:00
const geistSans = Geist({
2025-10-08 04:19:15 +00:00
variable: '--font-geist-sans',
subsets: ['latin'],
2025-10-08 03:09:52 +00:00
});
const geistMono = Geist_Mono({
2025-10-08 04:19:15 +00:00
variable: '--font-geist-mono',
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={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}