From be70d53b1356b782aacc79f638cc855293d9e184 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 15:40:35 +0000 Subject: [PATCH 1/4] Update src/app/contacto/page.tsx --- src/app/contacto/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contacto/page.tsx b/src/app/contacto/page.tsx index e723b8e..c1feb02 100644 --- a/src/app/contacto/page.tsx +++ b/src/app/contacto/page.tsx @@ -128,7 +128,7 @@ export default function ContactPage() { placeholder: "Describe tu problema o solicitud", }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg" + imageSrc="http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg?_wi=2" imageAlt="Barcelona Eixample map location" mediaPosition="right" mediaAnimation="slide-up" -- 2.49.1 From 522f7e7183cdfb81dcb5dfe68779929d63b32772 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 15:40:36 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..b88b12b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,54 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Mulish } 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 { Mulish } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "MOTORZONE | Taller Mecánico Profesional en Barcelona Eixample", + description: "Reparación de coches y motos en Barcelona. 30 años de experiencia, profesionales honestos, precios justos. Llama al 934 23 22 78 para pedir cita.", + keywords: "taller mecánico Barcelona, reparación coches Barcelona, taller motos Barcelona, mecánico Eixample, reparación vehículos", + metadataBase: new URL("https://motorzone-barcelona.com/"), + alternates: { + canonical: "https://motorzone-barcelona.com/", + }, + openGraph: { + title: "MOTORZONE - Tu Mecánico de Confianza en Barcelona", + description: "Taller mecánico profesional con 30 años de experiencia. Reparación de coches y motos, mantenimiento y diagnóstico.", + url: "https://motorzone-barcelona.com/", + siteName: "MOTORZONE", + type: "website", + images: [ + { + url: "https://motorzone-barcelona.com/og-hero.jpg", + alt: "MOTORZONE - Taller Mecánico Barcelona", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "MOTORZONE - Taller Mecánico Barcelona", + description: "Reparación profesional de coches y motos en el Eixample. Honestidad, calidad y confianza.", + images: ["https://motorzone-barcelona.com/twitter-hero.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +57,9 @@ export default function RootLayout({ return ( - + {children}