diff options
Diffstat (limited to 'app/layout.tsx')
| -rw-r--r-- | app/layout.tsx | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/app/layout.tsx b/app/layout.tsx index f7fa87e..cc5ccbe 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,20 +1,16 @@ +import type React from "react"; import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Roboto } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", +const roboto = Roboto({ + weight: ["400", "500", "700", "900"], subsets: ["latin"], }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Justiça Eleitoral - Sistema de Votação", + description: "Eleições Estudantis", }; export default function RootLayout({ @@ -23,12 +19,10 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - <html lang="en"> - <body - className={`${geistSans.variable} ${geistMono.variable} antialiased`} - > - {children} - </body> + <html lang="pt-BR"> + <body className={roboto.className}>{children}</body> </html> ); } + +import "./globals.css"; |