Este commit remove seções vazias de mudanças de código do arquivo de mudanças. Isso ajuda a manter o histórico de mudanças mais limpo e organizado, facilitando a leitura e a compreensão das alterações realizadas no projeto.
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import { ThemeProvider } from "@/components/theme-provider";
|
|
import { Toaster } from "@/components/ui/sonner";
|
|
import { main_font } from "@/public/fonts/font_index";
|
|
import { Analytics } from "@vercel/analytics/next";
|
|
import { SpeedInsights } from "@vercel/speed-insights/next";
|
|
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Opensheets",
|
|
description: "Finanças pessoais descomplicadas.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<head>
|
|
<meta name="apple-mobile-web-app-title" content="Opensheets" />
|
|
</head>
|
|
<body
|
|
className={`${main_font.className} antialiased `}
|
|
suppressHydrationWarning
|
|
>
|
|
<ThemeProvider attribute="class" defaultTheme="light">
|
|
{children}
|
|
<Toaster position="top-right" />
|
|
</ThemeProvider>
|
|
<Analytics />
|
|
<SpeedInsights />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|