From 506f7375ec256127f500bdec040d45a6c989375d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 01:39:08 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8025404..cafda95 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -70,7 +70,7 @@ export default function AboutPage() { icon: Leaf, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/close-up-hands-holding-flyer-pen_23-2148819846.jpg" + imageSrc="http://img.b2bpic.net/free-photo/close-up-hands-holding-flyer-pen_23-2148819846.jpg?_wi=2" imageAlt="Sustainable building practices and environmental commitment" mediaAnimation="slide-up" imagePosition="right" @@ -90,28 +90,28 @@ export default function AboutPage() { id: "1", name: "Thomas Anderson", role: "Founder & CEO", - imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman_1262-20882.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman_1262-20882.jpg?_wi=2", imageAlt: "Thomas Anderson, Founder & CEO", }, { id: "2", name: "Elena Rodriguez", role: "Lead Architect", - imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-architect-hardhat_1303-19299.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-architect-hardhat_1303-19299.jpg?_wi=2", imageAlt: "Elena Rodriguez, Lead Architect", }, { id: "3", name: "Marcus Johnson", role: "Project Manager", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg?_wi=2", imageAlt: "Marcus Johnson, Project Manager", }, { id: "4", name: "Dr. Lisa Wong", role: "Sustainability Director", - imageSrc: "http://img.b2bpic.net/free-photo/serene-businessman-with-glasses_1098-719.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/serene-businessman-with-glasses_1098-719.jpg?_wi=2", imageAlt: "Dr. Lisa Wong, Sustainability Director", }, ]} -- 2.49.1 From 7e8e34d3593c028c5dbe7e612f014cd8916731af Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 01:39:08 +0000 Subject: [PATCH 2/5] 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}