From f07eb5176e0d237ba2178555fe3c3f7111d553d9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:15:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 67 +++++++++++----------------------------------- 1 file changed, 16 insertions(+), 51 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c701a36..ea590dd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,63 +1,29 @@ -import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; + +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: "Free Battery Testing Johannesburg | Car Battery Replacement Near Me", - description: "Free Batt offers fast car battery testing and professional replacement in Johannesburg. Call 011 435 4618 for quick diagnostic service and same-day installation.", - keywords: "car battery near me, battery replacement Johannesburg, free battery testing, car battery shop Johannesburg, battery installation", - openGraph: { - title: "Free Batt - Car Battery Testing & Replacement Johannesburg", - description: "Professional battery testing and fast replacement service in Johannesburg. Get free diagnostics and expert installation today.", - url: "https://freebatt.co.za", - siteName: "Free Batt", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/mid-adult-mechanic-using-diagnostic-tool-while-checking-voltage-car-battery-auto-repair-shop_637285-4265.jpg", - alt: "Free Batt professional battery testing service", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Free Batt - Free Battery Testing Johannesburg", - description: "Fast professional car battery testing and replacement in Johannesburg", - images: ["http://img.b2bpic.net/free-photo/mid-adult-mechanic-using-diagnostic-tool-while-checking-voltage-car-battery-auto-repair-shop_637285-4265.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Free Batt | Car Battery Testing & Replacement Johannesburg", description: "Free battery testing and fast professional replacement in Johannesburg. Get back on the road quickly with trusted service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +