From 354503924b7992ab0c71bb31ade4e8a8c6d1a3ff Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:21:41 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 69c1699..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +