From 479c312d11929d265344d62a81b06d25eb76b6fa Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 11:16:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 39 ++++++++------------------------------- 1 file changed, 8 insertions(+), 31 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 357b840..666c500 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,42 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Segurança Rodoviária para Crianças e Jovens - Educativo", - description: "Portal educativo sobre segurança rodoviária desenvolvido em TIC. Aprende sobre trânsito, sinais, prevenção de riscos e mobilidade sustentável.", - keywords: "segurança rodoviária, educação, trânsito, crianças, jovens, sinais, prevenção de acidentes", - openGraph: { - title: "Segurança Rodoviária para Crianças e Jovens", - description: "Aprenda sobre segurança rodoviária através de conteúdo educativo e interativo", - siteName: "Segurança na Estrada", - type: "website", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Segurança na Estrada", description: "Portal educativo de segurança rodoviária para crianças e jovens"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}