Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec2020e269 | |||
| 6f71ad7bb9 | |||
| 371255bf15 | |||
| ba128132ad | |||
| 0b00bc5201 | |||
| 124123c4df | |||
| e5ca70bbff |
@@ -1,73 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Source_Sans_3 } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const sourceSans3 = Source_Sans_3({
|
const geist = Geist({
|
||||||
variable: "--font-source-sans-3",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const halant = Halant({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Best Car Service Center in Dhanori & Lohegaon | New Motor Care Pune",
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
description: "Expert car servicing, denting, painting & repairs in Dhanori & Lohegaon. 4.9★ rated (107+ reviews). Call 073979 11662 for same-day appointments.",
|
|
||||||
keywords: "car service Dhanori, car repair Lohegaon, car servicing Pune, car denting, car painting, auto repair near me, best garage Dhanori",
|
|
||||||
metadataBase: new URL("https://newmotorcare.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://newmotorcare.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Best Car Service in Dhanori & Lohegaon | New Motor Care",
|
|
||||||
description: "Expert automotive servicing with 107+ Google reviews. Same-day appointments available.",
|
|
||||||
url: "https://newmotorcare.com",
|
|
||||||
siteName: "New Motor Care",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg",
|
|
||||||
alt: "New Motor Care Workshop",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Best Car Service in Dhanori & Lohegaon | New Motor Care",
|
|
||||||
description: "Expert car repair & servicing with 4.9★ rating",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${sourceSans3.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1436,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -110,27 +110,45 @@ export default function HomePage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
tag: "Maintenance", title: "Full Car Servicing", subtitle: "Regular maintenance for optimal performance", description: "Complete vehicle servicing including oil changes, filter replacements, fluid checks, and system diagnostics to keep your car running smoothly.", imageSrc: "http://img.b2bpic.net/free-photo/garage-engineers-replace-vehicle-oil_482257-115297.jpg?_wi=1", imageAlt: "Car Servicing"
|
tag: "Maintenance", title: "Full Car Servicing", subtitle: "Regular maintenance for optimal performance", description: "Complete vehicle servicing including oil changes, filter replacements, fluid checks, and system diagnostics to keep your car running smoothly.", imageSrc: "http://img.b2bpic.net/free-photo/garage-engineers-replace-vehicle-oil_482257-115297.jpg?_wi=1", imageAlt: "Car Servicing", buttons: [
|
||||||
|
{ text: "Book Now", href: "tel:07397911662" },
|
||||||
|
{ text: "Get Quote", href: "https://wa.me/919876543210" }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
tag: "Body Work", title: "Car Denting & Painting", subtitle: "Professional bodywork restoration", description: "Expert denting removal and premium paint services. We restore your vehicle's appearance to like-new condition with color-matched finishes.", imageSrc: "http://img.b2bpic.net/free-photo/car-detailing-concept-man-face-mask-with-orbital-polisher-repair-shop-polishing-orange-suv-car_627829-12608.jpg?_wi=1", imageAlt: "Car Painting"
|
tag: "Body Work", title: "Car Denting & Painting", subtitle: "Professional bodywork restoration", description: "Expert denting removal and premium paint services. We restore your vehicle's appearance to like-new condition with color-matched finishes.", imageSrc: "http://img.b2bpic.net/free-photo/car-detailing-concept-man-face-mask-with-orbital-polisher-repair-shop-polishing-orange-suv-car_627829-12608.jpg?_wi=1", imageAlt: "Car Painting", buttons: [
|
||||||
|
{ text: "Book Now", href: "tel:07397911662" },
|
||||||
|
{ text: "Get Quote", href: "https://wa.me/919876543210" }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
tag: "Diagnostics", title: "Engine Diagnostics", subtitle: "Advanced computerized testing", description: "State-of-the-art diagnostic scanning to identify engine issues accurately. Quick identification and transparent reporting of problems.", imageSrc: "http://img.b2bpic.net/free-photo/hands-mechanic-using-diagnostic-tool_1170-1188.jpg?_wi=1", imageAlt: "Engine Diagnostics"
|
tag: "Diagnostics", title: "Engine Diagnostics", subtitle: "Advanced computerized testing", description: "State-of-the-art diagnostic scanning to identify engine issues accurately. Quick identification and transparent reporting of problems.", imageSrc: "http://img.b2bpic.net/free-photo/hands-mechanic-using-diagnostic-tool_1170-1188.jpg?_wi=1", imageAlt: "Engine Diagnostics", buttons: [
|
||||||
|
{ text: "Book Now", href: "tel:07397911662" },
|
||||||
|
{ text: "Get Quote", href: "https://wa.me/919876543210" }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
tag: "Safety", title: "Brake & Suspension Repair", subtitle: "Critical safety system maintenance", description: "Professional brake system service and suspension repairs to ensure your vehicle handles safely and smoothly on all road conditions.", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-with-tool-wheel-hands-mechanic-blue-work-clothes_1157-46150.jpg?_wi=1", imageAlt: "Brake Repair"
|
tag: "Safety", title: "Brake & Suspension Repair", subtitle: "Critical safety system maintenance", description: "Professional brake system service and suspension repairs to ensure your vehicle handles safely and smoothly on all road conditions.", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-with-tool-wheel-hands-mechanic-blue-work-clothes_1157-46150.jpg?_wi=1", imageAlt: "Brake Repair", buttons: [
|
||||||
|
{ text: "Book Now", href: "tel:07397911662" },
|
||||||
|
{ text: "Get Quote", href: "https://wa.me/919876543210" }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 5,
|
id: 5,
|
||||||
tag: "Comfort", title: "AC Service & Electrical", subtitle: "Climate control and electrical systems", description: "Expert AC servicing, recharging, and electrical system repairs. Keep your vehicle's comfort features and electrical components functioning perfectly.", imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-examining-undercarriage-car-with-flashlight-repair-shop_637285-12709.jpg?_wi=1", imageAlt: "AC and Electrical Service"
|
tag: "Comfort", title: "AC Service & Electrical", subtitle: "Climate control and electrical systems", description: "Expert AC servicing, recharging, and electrical system repairs. Keep your vehicle's comfort features and electrical components functioning perfectly.", imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-examining-undercarriage-car-with-flashlight-repair-shop_637285-12709.jpg?_wi=1", imageAlt: "AC and Electrical Service", buttons: [
|
||||||
|
{ text: "Book Now", href: "tel:07397911662" },
|
||||||
|
{ text: "Get Quote", href: "https://wa.me/919876543210" }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 6,
|
id: 6,
|
||||||
tag: "Performance", title: "Wheel Alignment & Balancing", subtitle: "Precision wheel services", description: "Professional wheel alignment and balancing for improved handling, fuel efficiency, and tire longevity. Extended tire life guaranteed.", imageSrc: "http://img.b2bpic.net/free-photo/garage-engineers-replace-vehicle-oil_482257-115297.jpg?_wi=2", imageAlt: "Wheel Alignment"
|
tag: "Performance", title: "Wheel Alignment & Balancing", subtitle: "Precision wheel services", description: "Professional wheel alignment and balancing for improved handling, fuel efficiency, and tire longevity. Extended tire life guaranteed.", imageSrc: "http://img.b2bpic.net/free-photo/garage-engineers-replace-vehicle-oil_482257-115297.jpg?_wi=2", imageAlt: "Wheel Alignment", buttons: [
|
||||||
|
{ text: "Book Now", href: "tel:07397911662" },
|
||||||
|
{ text: "Get Quote", href: "https://wa.me/919876543210" }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
title="Our Services"
|
title="Our Services"
|
||||||
@@ -198,9 +216,9 @@ export default function HomePage() {
|
|||||||
description="Old Jakat Naka, Lohgaon Rd, Opposite Goodwill Fabian Society, Pune, Maharashtra 411032 | Open: 9:30 AM - 7:00 PM (Monday-Sunday)"
|
description="Old Jakat Naka, Lohgaon Rd, Opposite Goodwill Fabian Society, Pune, Maharashtra 411032 | Open: 9:30 AM - 7:00 PM (Monday-Sunday)"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your email"
|
|
||||||
buttonText="Get Directions"
|
buttonText="Get Directions"
|
||||||
termsText="Call us at 073979 11662 or WhatsApp for quick assistance and service bookings."
|
termsText="📍 Old Jakat Naka, Lohgaon Rd, Opposite Goodwill Fabian Society, Pune, Maharashtra 411032"
|
||||||
|
onSubmit={() => window.open('https://maps.google.com/?q=Old+Jakat+Naka+Lohgaon+Rd+Pune', '_blank')}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user