Merge version_2 into main #4
@@ -1,51 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { DM_Sans } 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 dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Cars Doctor - Professional Auto Repair & Service in Mumbai", description: "Expert car maintenance and repair services in Mumbai. Oil changes, tire service, brake repair, engine diagnostics, and more. 15+ years trusted experience.", keywords: "car repair Mumbai, auto service, vehicle maintenance, tire service, brake repair, engine diagnostics, professional mechanics", metadataBase: new URL("https://carsdoctor.in"),
|
||||
alternates: {
|
||||
canonical: "https://carsdoctor.in"},
|
||||
openGraph: {
|
||||
title: "Cars Doctor - Professional Auto Repair & Service", description: "Expert automotive services you can trust. Quality repairs, quick turnaround, certified technicians.", url: "https://carsdoctor.in", siteName: "Cars Doctor", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/red-steel-tool-box-garage_613910-13485.jpg", alt: "Cars Doctor - Professional Auto Service Center"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Cars Doctor - Professional Auto Repair & Service", description: "Expert automotive services in Mumbai. Quality you can trust.", images: ["http://img.b2bpic.net/free-photo/red-steel-tool-box-garage_613910-13485.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={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -118,7 +118,7 @@ export default function LandingPage() {
|
||||
id: "2", value: "500+", title: "Vehicles Serviced", items: ["All vehicle types", "Regular customers", "Fleet partnerships"],
|
||||
},
|
||||
{
|
||||
id: "3", value: "98%", title: "Satisfaction Rate", items: ["Customer reviews", "Quality guarantee", "On-time delivery"],
|
||||
id: "3", value: "98%", title: "Satisfaction Rate", items: ["500+ 5-star reviews", "Quality guarantee", "On-time delivery"],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user