From 9aabcde203826c3c534db4a82dd14eb3e2431d2f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:27:19 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 677789f..1632f92 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -86,7 +86,7 @@ export default function AboutPage() { { text: "Book Service", href: "/" } ]} buttonAnimation="opacity" - imageSrc="http://img.b2bpic.net/free-photo/composition-with-digital-tablet-electrician-work-items_169016-24255.jpg" + imageSrc="http://img.b2bpic.net/free-photo/composition-with-digital-tablet-electrician-work-items_169016-24255.jpg?_wi=2" imageAlt="Professional car service center" useInvertedBackground={false} ariaLabel="About ProMechanic section" @@ -105,19 +105,19 @@ export default function AboutPage() { { id: "owner-1", name: "Rajesh Kumar (Owner) | राजेश कुमार\n📞 +91-98765-43210", - imageSrc: "http://img.b2bpic.net/free-photo/portriat-beautiful-business-woman-standing_23-2148317282.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portriat-beautiful-business-woman-standing_23-2148317282.jpg?_wi=3", imageAlt: "Shop Owner Rajesh Kumar" }, { id: "mechanic-1", name: "Amit Singh (Lead Mechanic) | अमित सिंह\n📞 +91-98765-43211", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-worker-overalls-steel-factory-background_176420-5565.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-worker-overalls-steel-factory-background_176420-5565.jpg?_wi=3", imageAlt: "Lead Mechanic Amit Singh" }, { id: "mechanic-2", name: "Priya Sharma (Bike Specialist) | प्रिया शर्मा\n📞 +91-98765-43212", - imageSrc: "http://img.b2bpic.net/free-photo/happy-industry-4-0-solar-panels-plant-elderly-supervisor-overseeing-facility-smiling-photovoltaics_482257-135647.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-industry-4-0-solar-panels-plant-elderly-supervisor-overseeing-facility-smiling-photovoltaics_482257-135647.jpg?_wi=3", imageAlt: "Bike Specialist Priya Sharma" } ]} -- 2.49.1 From 35db212395fac7fa69c8ccf377c8fd2b01bc5080 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:27:20 +0000 Subject: [PATCH 2/5] Update src/app/booking/page.tsx --- src/app/booking/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index 987eade..5805660 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -87,7 +87,7 @@ export default function BookingPage() { { text: "Start AI Booking", href: "#booking" } ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/mechanic-smiling-while-examining-car-engine-with-lamp_1170-1292.jpg" + imageSrc="http://img.b2bpic.net/free-photo/mechanic-smiling-while-examining-car-engine-with-lamp_1170-1292.jpg?_wi=3" imageAlt="AI booking service interface" showBlur={true} showDimOverlay={false} -- 2.49.1 From 0e7304a0b88793b5fc2eec1f9fa80252c83cb6ba Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:27:20 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 38 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da4fe5a..9e20611 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,30 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"] }); +export const metadata: Metadata = { + title: "ProMechanic - Expert Car & Bike Repair Services", + description: "Professional auto and motorcycle repair services in Delhi. Expert mechanics, 24/7 emergency service, AI booking, and direct mechanic chat available.", + keywords: "car repair, bike repair, mechanic shop, auto service, motorcycle maintenance, automotive care, Delhi mechanic", + metadataBase: new URL("https://promechanic.com"), + alternates: { + canonical: "https://promechanic.com" + }, + openGraph: { + title: "ProMechanic - Your Trusted Repair Partner", + description: "Expert mechanical services for cars and motorcycles with advanced diagnostics and transparent pricing.", + siteName: "ProMechanic", + type: "website" + }, + twitter: { + card: "summary_large_image", + title: "ProMechanic - Professional Auto & Bike Repair" + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +56,9 @@ export default function RootLayout({ return ( - + {children}