70 lines
2.6 KiB
TypeScript
70 lines
2.6 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Montserrat } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Clínica Estética Virtuosa | Clínica de Beleza São José dos Pinhais',
|
|
description: 'Realce sua beleza natural com sofisticação. Tratamentos estéticos avançados em São José dos Pinhais com atendimento exclusivo e resultados naturais. Agende via WhatsApp!',
|
|
keywords: ["Aesthetic clinic São José dos Pinhais, Botox São José dos Pinhais, Facial harmonization Brazil, Advanced aesthetics clinic, beauty treatments Paraná, anti-aging São José dos Pinhais, laser hair removal, dermal fillers"],
|
|
openGraph: {
|
|
"title": "Clínica Estética Virtuosa | Aesthetic Clinic São José dos Pinhais",
|
|
"description": "Enhance your natural beauty with advanced aesthetic treatments at Clínica Estética Virtuosa in São José dos Pinhais. Personalized care, premium environment, and natural-looking results. Book your appointment via WhatsApp!",
|
|
"url": "https://www.virtuosa-estetica.com.br",
|
|
"siteName": "Clínica Estética Virtuosa",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/doctor-cleaning-face-patient-with-face-sponge_107420-65178.jpg",
|
|
"alt": "Clinic interior or treatment in progress"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Clínica Estética Virtuosa | Aesthetic Clinic São José dos Pinhais",
|
|
"description": "Enhance your natural beauty with advanced aesthetic treatments at Clínica Estética Virtuosa in São José dos Pinhais.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/doctor-cleaning-face-patient-with-face-sponge_107420-65178.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const montserrat = Montserrat({
|
|
variable: "--font-montserrat",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${montserrat.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|