Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 09:15:18 +00:00
2 changed files with 21 additions and 56 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1425,7 +1391,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -116,10 +116,10 @@ export default function HomePage() {
tag="Our Advantage"
tagIcon={Award}
metrics={[
{ id: "1", icon: Zap, title: "Fast Service", value: "30 min" },
{ id: "2", icon: Users, title: "Expert Team", value: "10+ yrs" },
{ id: "3", icon: Shield, title: "Warranty", value: "24 mo" },
{ id: "4", icon: MapPin, title: "Local", value: "5 areas" },
{ id: "1", icon: Zap, title: "Service in 30 Minutes", value: "30 min" },
{ id: "2", icon: Users, title: "10+ Years Expertise", value: "10+ yrs" },
{ id: "3", icon: Shield, title: "24-Month Warranty", value: "24 mo" },
{ id: "4", icon: MapPin, title: "Serving 5 Areas", value: "5 areas" },
]}
animationType="slide-up"
textboxLayout="default"
@@ -202,4 +202,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}