From a2e0b89753ea4bc4a9192dca9ff27902bb962152 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:32:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 198eec8..c6343cb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,28 @@ import type { Metadata } from "next"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", 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: "JMM Autos - Professional Auto Repair & Maintenance | Jamestown", description: "Elite auto repair and maintenance services in Jamestown Industrial Park. Expert diagnostics, maintenance, and repairs for all vehicle makes and models. Call 089 242 4499.", keywords: "auto repair, car maintenance, vehicle diagnostics, mechanic services, Jamestown, professional auto care", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "JMM Autos - Professional Auto Repair & Maintenance", description: "Elite auto repair and maintenance services in Jamestown Industrial Park", url: "https://jmmautos.com", siteName: "JMM Autos", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/cheerful-mechanic-standing-near-cars_23-2147897989.jpg", alt: "JMM Autos Professional Workshop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "JMM Autos - Professional Auto Repair", description: "Expert auto repair and maintenance services", images: [ - "http://img.b2bpic.net/free-photo/cheerful-mechanic-standing-near-cars_23-2147897989.jpg"], - }, -}; + title: "JMM Autos | Professional Mobile Mechanic Services", description: "Elite auto care at your doorstep. Professional vehicle diagnostics, maintenance, and repair services in Jamestown Industrial Park."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +