blob: 7923b0430af465b1b59d4af13a718b0d9b02cb91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import type React from "react";
import type { Metadata } from "next";
import { Roboto } from "next/font/google";
import "./globals.css";
const roboto = Roboto({
weight: ["400", "500", "700", "900"],
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Justiça Eleitoral Estudantil",
description: "Eleições Estudantis",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="pt-BR">
<body className={roboto.className}>{children}</body>
</html>
);
}
import "./globals.css";
|