inicila commit

This commit is contained in:
2026-03-25 14:32:19 +01:00
parent 6ed240b62b
commit 2f9ace4b1c
9 changed files with 671 additions and 85 deletions
+11 -15
View File
@@ -1,20 +1,15 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Inter } 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 inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "tvone — Notícias e entretenimento",
description: "O seu portal de notícias, música e cultura.",
};
export default function RootLayout({
@@ -23,11 +18,12 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
<html lang="pt" className={`${inter.variable} h-full antialiased`}>
<body
className={`min-h-full flex flex-col bg-white text-neutral-900 ${inter.className}`}
>
{children}
</body>
</html>
);
}