From a1460fca56b9b2735dcf5bcbef77a66d4e3e7038 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 07:55:04 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 6 insertions(+), 1413 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 811fe85..c1b3888 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Trusted Local Mechanic Near You | N&G Mechanical Repairs", description: "Honest, reliable car repairs and servicing. 5-star rated local mechanics. Fast diagnostics, fair pricing, transparent advice. Book now!", keywords: "local mechanic, car service, brake repair, battery replacement, engine diagnostics, car repair near me, trusted mechanic", metadataBase: new URL("https://ng-mechanical-repairs.local"), - alternates: { - canonical: "https://ng-mechanical-repairs.local"}, - openGraph: { - title: "Trusted Local Mechanic | N&G Mechanical Repairs", description: "Honest car repairs and servicing. 5-star rated, transparent pricing, experienced mechanics.", type: "website", siteName: "N&G Mechanical Repairs", images: [ - { - url: "http://img.b2bpic.net/free-photo/professional-mechanic-using-contemporary-technology-work_329181-11875.jpg", alt: "professional mechanic working on car engine"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Trusted Local Mechanic | N&G Mechanical Repairs", description: "Honest car repairs with 5-star reviews. Call today for reliable service.", images: [ - "http://img.b2bpic.net/free-photo/professional-mechanic-using-contemporary-technology-work_329181-11875.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "N&G Mechanical - Local Trusted Mechanics", description: "Honest, experienced mechanics providing reliable servicing and repairs with transparent pricing."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -