|
|
|
|
@@ -1,28 +1,74 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Open_Sans } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const geistSans = Geist({
|
|
|
|
|
variable: "--font-geist-sans", subsets: ["latin"],
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const geistMono = Geist_Mono({
|
|
|
|
|
variable: "--font-geist-mono", subsets: ["latin"],
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const openSans = Open_Sans({
|
|
|
|
|
variable: "--font-open-sans",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Instituto Renova - Implantodontia Avançada", description: "Tratamentos modernos em implantes dentários com tecnologia digital e atendimento humanizado. Prof. Dr. Felipe Borba, especialista em implantes em Jundiaí."};
|
|
|
|
|
title: "Implantes Dentários em Jundiaí | Instituto Renova",
|
|
|
|
|
description: "Especialista em implantes dentários avançados em Jundiaí. Prof. Dr. Felipe Borba oferece tratamentos modernos com tecnologia digital. Avaliação gratuita!",
|
|
|
|
|
keywords: "implante dentário Jundiaí, implantodontista Jundiaí, clínica de implantes, protocolo dentário, cirurgia guiada, odontologia digital",
|
|
|
|
|
metadataBase: new URL("https://odontologiarenova.com.br"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://odontologiarenova.com.br",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Implantes Dentários Avançados em Jundiaí",
|
|
|
|
|
description: "Recupere seu sorriso com o especialista Prof. Dr. Felipe Borba. Tecnologia de ponta e atendimento humanizado.",
|
|
|
|
|
url: "https://odontologiarenova.com.br",
|
|
|
|
|
siteName: "Instituto Renova",
|
|
|
|
|
type: "website",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/crowded-stomatology-waiting-area-with-people-filling-form-dental-consultation_482257-4858.jpg",
|
|
|
|
|
alt: "Instituto Renova - Clínica de Implantodontia",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "Implantes Dentários Avançados em Jundiaí",
|
|
|
|
|
description: "Especialista em implantodontia com 15+ anos de experiência",
|
|
|
|
|
images: ["http://img.b2bpic.net/free-photo/crowded-stomatology-waiting-area-with-people-filling-form-dental-consultation_482257-4858.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}) {
|
|
|
|
|
}>) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="pt-BR">
|
|
|
|
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1390,6 +1436,7 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|