From 0e0019bea371450b23ed2f8499a3cff6a52c4266 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:17:18 +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 96aa350..59f945c 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 { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "BuildPro Construction | Premium Building Solutions", description: "Expert construction services for commercial, residential, and industrial projects. 20+ years of excellence in delivering quality builds on time and on budget.", keywords: "construction, building, contractor, commercial construction, residential construction, project management", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "BuildPro Construction | Premium Building Solutions", description: "Expert construction services delivering quality projects on time and within budget.", type: "website", siteName: "BuildPro"}, - twitter: { - card: "summary_large_image", title: "BuildPro Construction | Premium Building Solutions", description: "Expert construction services for commercial and residential projects."}, -}; + title: "BuildPro - Construction Solutions", description: "Professional construction and development services"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}