Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f68b5a1ebd | |||
| 05e6d3f2c0 | |||
| ce2e4ce065 | |||
| 630d5c75f0 | |||
| 90508dc470 | |||
| d94aee962c |
@@ -1,28 +1,51 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
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,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1390,6 +1413,7 @@ 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: ["500+ 5-star reviews", "Quality guarantee", "On-time delivery"],
|
||||
id: "3", value: "98%", title: "Satisfaction Rate", items: ["Customer reviews", "Quality guarantee", "On-time delivery"],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #000000;;;;
|
||||
--card: #f5f5f5;;;;
|
||||
--foreground: #000000;;;;
|
||||
--primary-cta: #dc2626;;;;
|
||||
--secondary-cta: #ffffff;;;;
|
||||
--accent: #1f2937;;;;
|
||||
--background-accent: #1f2937;;;; */
|
||||
/* --background: #ffffff;;
|
||||
--card: #f5f5f5;;
|
||||
--foreground: #000000;;
|
||||
--primary-cta: #dc2626;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #1f2937;;
|
||||
--background-accent: #1f2937;; */
|
||||
|
||||
--background: #000000;;;;
|
||||
--card: #f5f5f5;;;;
|
||||
--foreground: #000000;;;;
|
||||
--primary-cta: #dc2626;;;;
|
||||
--primary-cta-text: #ffffff;;;;
|
||||
--secondary-cta: #ffffff;;;;
|
||||
--secondary-cta-text: #000000;;;;
|
||||
--accent: #1f2937;;;;
|
||||
--background-accent: #1f2937;;;;
|
||||
--background: #ffffff;;
|
||||
--card: #f5f5f5;;
|
||||
--foreground: #000000;;
|
||||
--primary-cta: #dc2626;;
|
||||
--primary-cta-text: #ffffff;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta-text: #000000;;
|
||||
--accent: #1f2937;;
|
||||
--background-accent: #1f2937;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user