From 9728c0f001a23203d68705355ecfa838bbafb498 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:20:44 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++--------------------------------------- 1 file changed, 6 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1cf04de..c4dedfa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,20 @@ import type { Metadata } from "next"; -import { Lato } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "BuildPro Construction | Premium Building & Renovation Services", description: "Award-winning construction company specializing in residential, commercial, and renovation projects. 20+ years experience, 500+ completed projects.", keywords: "construction company, home renovation, commercial building, construction services, contractors", openGraph: { - title: "BuildPro Construction | Premium Building & Renovation Services", description: "Expert construction and renovation services for residential and commercial projects", type: "website", siteName: "BuildPro Construction" - }, - twitter: { - card: "summary_large_image", title: "BuildPro Construction | Premium Building & Renovation Services", description: "Award-winning construction company with 20+ years of experience" - }, - robots: { - index: true, - follow: true - } -}; + title: "BuildPro - Construction & Renovation Services", description: "Award-winning construction company delivering premium residential, commercial, and renovation projects."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}