From 58ca0483a35211cc53c37455d805df91cf1924e5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:33:23 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++++------------------------------------- 1 file changed, 9 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2c5402e..e616944 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; export const metadata: Metadata = { - title: "Home Renovation & Construction Services in Roodepoort", description: "Professional home renovations, bathroom remodels, kitchen upgrades, and roofing services in Roodepoort. Trusted local contractors with quality craftsmanship and transparent pricing.", keywords: "home renovation Roodepoort, bathroom remodeling, kitchen renovation, roof repair, construction services, local contractor", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "BuildRight - Home Renovation Experts in Roodepoort", description: "Transform your home with trusted local construction services", type: "website", siteName: "BuildRight Construction"}, -}; + title: "BuildRight - Home Renovation & Construction", description: "Expert home renovation and construction services in Roodepoort, Johannesburg. Quality workmanship, transparent pricing, and reliable service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +