From e18af539335e19501878c3be3a8f1880cffd5494 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:14:22 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f25b6eb..944ae68 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}