From 6e617d6981ebf61688a49e1ea4c558c1c72d6400 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 14:48:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1420 +------------------------------------------- 1 file changed, 11 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1f01bae..f698f6f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Dev Multi Car Repair Surat - 4.9★ Rated Service", description: "Best car repair & service workshop in Katargam, Surat. 4.9★ rated with 700+ reviews. Expert mechanics, transparent pricing, fast turnaround. Call now!", keywords: "car service Surat, car repair Katargam, best mechanic Surat, car AC repair, car service near me, automotive service center", metadataBase: new URL("https://devmulticar.com"), - alternates: { - canonical: "https://devmulticar.com"}, - openGraph: { - title: "Dev Multi Car - Surat's Most Trusted Repair Workshop", description: "Professional car repair & service in Katargam. 4.9★ Google rating, 700+ happy customers, transparent pricing.", url: "https://devmulticar.com", siteName: "Dev Multi Car", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/smiling-mechanic-talking-smartphone-with-lifted-car-coworker_496169-934.jpg", alt: "Professional car repair workshop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Dev Multi Car - Best Car Service in Surat", description: "4.9★ rated workshop. Expert mechanics, fair pricing, fast service.", images: ["http://img.b2bpic.net/free-photo/mechanic-using-laptop-while-servicing-car-engine_1170-1295.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Dev Multi Car - Car Repair & Service in Surat", description: "Professional car repair and service workshop in Surat. 4.9★ rated with 700+ satisfied customers."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -