From 7e8e34d3593c028c5dbe7e612f014cd8916731af Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 01:39:08 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..c98312e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "United Green Builders | Sustainable Construction & Green Building", + description: "Expert sustainable construction, solar integration, and eco-friendly building solutions. LEED certified projects with 15+ years of experience.", + keywords: "sustainable construction, green building, LEED certified, solar energy, eco-friendly renovation, sustainable materials", + metadataBase: new URL("https://www.unitedgreenbuilders.com"), + alternates: { + canonical: "https://www.unitedgreenbuilders.com", + }, + openGraph: { + title: "United Green Builders | Sustainable Construction", + description: "Transform your vision into a greener reality with sustainable construction and renewable energy solutions.", + url: "https://www.unitedgreenbuilders.com", + siteName: "United Green Builders", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-smiling-industrial-plant-shareholders-conducting-research_482257-123386.jpg", + alt: "Green sustainable building with renewable energy", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "United Green Builders | Sustainable Construction", + description: "Expert sustainable construction and green building solutions.", + images: ["http://img.b2bpic.net/free-photo/portrait-smiling-industrial-plant-shareholders-conducting-research_482257-123386.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}