5 Commits

Author SHA1 Message Date
371255bf15 Update src/app/page.tsx 2026-03-04 03:59:00 +00:00
ba128132ad Update src/app/layout.tsx 2026-03-04 03:59:00 +00:00
0b00bc5201 Merge version_1 into main
Merge version_1 into main
2026-03-04 03:58:03 +00:00
124123c4df Merge version_1 into main
Merge version_1 into main
2026-03-04 03:56:57 +00:00
e5ca70bbff Merge version_1 into main
Merge version_1 into main
2026-03-04 03:55:09 +00:00
2 changed files with 16 additions and 63 deletions

View File

@@ -1,74 +1,28 @@
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={{
__html: ` __html: `
@@ -1436,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -198,9 +198,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>
@@ -229,4 +229,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }