diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d7c0f76..ca7a597 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,22 @@ -import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Proteção Veicular em Jundiaí | Mohav - 4,7 ⭐", description: "Proteção veicular acessível e transparente em Jundiaí. Planos com cobertura contra roubo, furto, colisão e guincho 24h. Atendimento ágil e confiável.", keywords: "proteção veicular Jundiaí, seguro auto Jundiaí, associação veicular, proteção para carro", metadataBase: new URL("https://mohav.com.br"), - alternates: { - canonical: "https://mohav.com.br" - }, - openGraph: { - title: "Proteção Veicular em Jundiaí | Mohav", description: "Proteção financeira real para seu veículo. Planos acessíveis com atendimento ágil e transparência total.", url: "https://mohav.com.br", siteName: "Mohav Proteção Veicular", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Proteção Veicular em Jundiaí | Mohav", description: "Proteja seu carro com a Mohav. Planos acessíveis, atendimento 24h e suporte quando você precisa." - }, - robots: { - index: true, - follow: true - } + title: 'Create Next App', + description: 'Generated by create next app', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}