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" } ]} 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} 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}