From 4c76c39aa866c55138c025e673650f247c36f74a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 20:54:18 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 41 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..7035295 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,56 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Montserrat } from "next/font/google"; import { Inter } 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 { Montserrat } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Cortebelo Estilistas - Peluquería en Burgos | 4.9★", + description: "Peluquería profesional en Burgos con 12+ años de experiencia. Cortes, color, mechas y peinados. Atención personalizada. 📞 604 45 46 42", + keywords: "peluquería Burgos, cortes de cabello, coloración, mechas, salón profesional", + metadataBase: new URL("https://cortebelo.es"), + alternates: { + canonical: "https://cortebelo.es", + }, + openGraph: { + title: "Cortebelo Estilistas - Tu Peluquería Profesional en Burgos", + description: "Peluquería de confianza con más de 140 reseñas de 5 estrellas. Servicios profesionales de corte, color y peinados.", + url: "https://cortebelo.es", + siteName: "Cortebelo Estilistas", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/hairdresser-taking-care-her-client_23-2149319809.jpg", + alt: "Cortebelo Estilistas - Salón profesional", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Cortebelo Estilistas Burgos", + description: "Peluquería profesional con 4.9★. Cortes, color, peinados y tratamientos capilares.", + images: [ + "http://img.b2bpic.net/free-photo/hairdresser-taking-care-her-client_23-2149319809.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +59,9 @@ export default function RootLayout({ return ( - + {children}