diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cbe480..2968203 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,63 @@ import type { Metadata } from "next"; 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Open_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); + const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Clínica Dental García Cámara | Dentista en Jaén", + description: "Tu clínica dental de confianza en Jaén. Implantes, ortodoncia, estética dental. Tratamientos modernos con tecnología avanzada. ¡Pide tu cita!", + keywords: "dentista jaén, clínica dental jaén, implantes dentales, ortodoncia, estética dental, dentista confianza", + metadataBase: new URL("https://www.clinicagarciamara.es"), + alternates: { + canonical: "https://www.clinicagarciamara.es", + }, + openGraph: { + title: "Clínica Dental García Cámara | Dentista en Jaén", + description: "Tratamientos dentales modernos con tecnología avanzada en Jaén", + url: "https://www.clinicagarciamara.es", + siteName: "Clínica Dental García Cámara", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797634.jpg", + alt: "Clínica Dental García Cámara", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Clínica Dental García Cámara | Dentista en Jaén", + description: "Tu clínica dental de confianza en Jaén con tratamientos avanzados", + images: [ + "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797634.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +66,9 @@ export default function RootLayout({ return ( - + {children}