Files
tvone/app/layout.tsx
T

30 lines
680 B
TypeScript
Raw Normal View History

2026-03-25 13:42:28 +01:00
import type { Metadata } from "next";
2026-03-25 14:32:19 +01:00
import { Inter } from "next/font/google";
2026-03-25 13:42:28 +01:00
import "./globals.css";
2026-03-25 14:32:19 +01:00
const inter = Inter({
variable: "--font-inter",
2026-03-25 13:42:28 +01:00
subsets: ["latin"],
});
export const metadata: Metadata = {
2026-03-25 14:32:19 +01:00
title: "tvone — Notícias e entretenimento",
description: "O seu portal de notícias, música e cultura.",
2026-03-25 13:42:28 +01:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
2026-03-25 14:32:19 +01:00
<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>
2026-03-25 13:42:28 +01:00
</html>
);
}