Merge version_1 into main #1
@@ -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"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +70,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -93,7 +93,7 @@ export default function HomePage() {
|
||||
{ text: "View Services", href: "/" }
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="Professional mechanic working on car engine"
|
||||
showBlur={true}
|
||||
showDimOverlay={false}
|
||||
@@ -111,7 +111,7 @@ export default function HomePage() {
|
||||
tagAnimation="blur-reveal"
|
||||
buttons={[{ text: "Learn More", 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=1"
|
||||
imageAlt="Professional car service center"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="About section explaining mechanic shop services"
|
||||
@@ -177,19 +177,19 @@ export default function HomePage() {
|
||||
{
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
imageAlt: "Bike Specialist Priya Sharma"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -87,7 +87,7 @@ export default function TeamPage() {
|
||||
{ text: "Book with Our Team", 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=2"
|
||||
imageAlt="Professional mechanic team"
|
||||
showBlur={true}
|
||||
showDimOverlay={false}
|
||||
@@ -108,19 +108,19 @@ export default function TeamPage() {
|
||||
{
|
||||
id: "owner-1",
|
||||
name: "Rajesh Kumar (Owner) | राजेश कुमार\n📞 +91-98765-43210\n🏅 Expert Diagnostics\n15+ years experience",
|
||||
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=2",
|
||||
imageAlt: "Shop Owner Rajesh Kumar"
|
||||
},
|
||||
{
|
||||
id: "mechanic-1",
|
||||
name: "Amit Singh (Lead Mechanic) | अमित सिंह\n📞 +91-98765-43211\n🔧 Engine Specialist\n12+ years experience",
|
||||
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=2",
|
||||
imageAlt: "Lead Mechanic Amit Singh"
|
||||
},
|
||||
{
|
||||
id: "mechanic-2",
|
||||
name: "Priya Sharma (Bike Specialist) | प्रिया शर्मा\n📞 +91-98765-43212\n🏍️ Motorcycle Expert\n10+ years experience",
|
||||
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=2",
|
||||
imageAlt: "Bike Specialist Priya Sharma"
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user