From 091429f0a3a155da3438b1e72479196515bd65aa Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 16:59:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ef789d..23e9fad 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ablaze Pool Repair | Professional Pool Services Johannesburg", description: "Expert swimming pool repairs, maintenance & installation in Johannesburg. 24/7 emergency service. Licensed professionals serving residential & commercial pools.", keywords: "pool repair, pool maintenance, pool service, swimming pool repairs, Johannesburg, emergency pool repair", openGraph: { - title: "Ablaze Pool Repair - Professional Pool Services", description: "Expert pool repair and maintenance services in Johannesburg. Call 083 941 1239 for professional pool care.", siteName: "Ablaze Pool Repair Company", type: "website"}, - twitter: { - card: "summary_large_image", title: "Ablaze Pool Repair - Expert Pool Services Johannesburg", description: "Professional swimming pool repairs and maintenance. Available 24/7 for emergency service."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Ablaze Swimming Pool Repair - Professional Pool Services Johannesburg", description: "Expert swimming pool repair, maintenance, and installation services in Johannesburg. Professional pool specialists available 24/7 for emergency repairs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}