Merge version_2 into main #4
@@ -1,74 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Best Car Service Center in Dhanori & Lohegaon | New Motor Care Pune",
|
||||
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,
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${sourceSans3.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1436,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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)"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
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>
|
||||
|
||||
@@ -229,4 +229,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user