|
|
|
|
@@ -1,53 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "PetShop & Veterinário Nelma - Santo André | Banho, Tosa e Clínica Veterinária", description: "Banho e tosa profissional, clínica veterinária e pet shop em Santo André. Mais de 100 avaliações 4.5⭐. Agende seu pet agora via WhatsApp!", keywords: "pet shop santo andré, banho e tosa santo andré, clínica veterinária santo andré, veterinário parque novo oratório, serviço pet care", metadataBase: new URL("https://petshopnelma.com.br"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://petshopnelma.com.br"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "PetShop & Veterinário Nelma - Cuidado Completo para Seu Pet", description: "Serviços profissionais de banho, tosa, atendimento veterinário e pet shop em Santo André, SP.", url: "https://petshopnelma.com.br", siteName: "PetShop & Veterinário Nelma", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/two-happy-pretty-beautiful-friends-relaxing-home-sofa-smile-play-with-dogs_343596-909.jpg", alt: "Pets felizes - PetShop & Veterinário Nelma"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "PetShop & Veterinário Nelma - Santo André", description: "Banho, tosa profissional e clínica veterinária. Mais de 100 clientes satisfeitos!", images: [
|
|
|
|
|
"http://img.b2bpic.net/free-photo/two-happy-pretty-beautiful-friends-relaxing-home-sofa-smile-play-with-dogs_343596-909.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "PetShop & Veterinário Nelma", description: "Cuidado completo para o seu pet em Santo André"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="pt-BR">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|