From ba128132addec3f28e5e755be13f10b8fcac0343 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 03:59:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 73 +++++++++------------------------------------- 1 file changed, 13 insertions(+), 60 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c19303a..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +