From 79670b4c51ebbdd242b894a5f0678618054cc2ef Mon Sep 17 00:00:00 2001 From: zwlucas Date: Mon, 31 Mar 2025 23:34:04 -0300 Subject: create eletrocast-eleicoes --- app/layout.tsx | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) (limited to 'app/layout.tsx') 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 ( - - - {children} - + + {children} ); } + +import "./globals.css"; -- cgit v1.2.3