Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -114,7 +114,7 @@ export default function HomePage() {
|
||||
"Green buildings reduce operating costs by 20-30% through improved efficiency and lower energy consumption.",
|
||||
},
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="Sustainable construction materials and eco-friendly building practices"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -144,7 +144,7 @@ export default function HomePage() {
|
||||
"Custom solar panel installation and integration designed for maximum efficiency and aesthetic appeal. We handle everything from assessment to installation and maintenance.",
|
||||
tag: "Renewable Energy",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/foreman-businessman-solar-energy-station_1157-35691.jpg",
|
||||
"http://img.b2bpic.net/free-photo/foreman-businessman-solar-energy-station_1157-35691.jpg?_wi=1",
|
||||
imageAlt: "Solar panel installation on modern home",
|
||||
buttons: [
|
||||
{
|
||||
@@ -160,7 +160,7 @@ export default function HomePage() {
|
||||
"Sourcing and installation of eco-certified building materials including recycled content, low-VOC products, and sustainably harvested timber.",
|
||||
tag: "Materials",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/wooden-textured-background_53876-33854.jpg",
|
||||
"http://img.b2bpic.net/free-photo/wooden-textured-background_53876-33854.jpg?_wi=1",
|
||||
imageAlt: "Eco-friendly building materials",
|
||||
buttons: [
|
||||
{
|
||||
@@ -176,7 +176,7 @@ export default function HomePage() {
|
||||
"Advanced water management including rainwater harvesting, greywater recycling, and efficient plumbing fixtures to reduce consumption by up to 40%.",
|
||||
tag: "Conservation",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-woman-taking-care-her-plants-greenhouse_23-2149037282.jpg",
|
||||
"http://img.b2bpic.net/free-photo/young-woman-taking-care-her-plants-greenhouse_23-2149037282.jpg?_wi=1",
|
||||
imageAlt: "Water conservation and efficiency systems",
|
||||
buttons: [
|
||||
{
|
||||
@@ -251,7 +251,7 @@ export default function HomePage() {
|
||||
avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-attractive-businesswoman_93675-133773.jpg",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/modern-green-house-surrounded-by-lush-landscaping-stone-pathway-leads-entrance_191095-99768.jpg",
|
||||
"http://img.b2bpic.net/free-photo/modern-green-house-surrounded-by-lush-landscaping-stone-pathway-leads-entrance_191095-99768.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -264,7 +264,7 @@ export default function HomePage() {
|
||||
avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/redhead-female-supervisor-dressed-elegant-suit-grey-background_613910-1352.jpg",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg",
|
||||
"http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -277,7 +277,7 @@ export default function HomePage() {
|
||||
avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/happy-successful-businessman-posing-outside_74855-2003.jpg",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/business-person-planning-alternative-energies_23-2149205462.jpg",
|
||||
"http://img.b2bpic.net/free-photo/business-person-planning-alternative-energies_23-2149205462.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -290,7 +290,7 @@ export default function HomePage() {
|
||||
avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-smiling-it-professional-silicon-valley-company-office-developing-software-apps-happy_482257-136225.jpg",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg",
|
||||
"http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -303,7 +303,7 @@ export default function HomePage() {
|
||||
avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/expressive-woman-posing-outdoor_344912-2955.jpg",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/modern-green-house-surrounded-by-lush-landscaping-stone-pathway-leads-entrance_191095-99768.jpg",
|
||||
"http://img.b2bpic.net/free-photo/modern-green-house-surrounded-by-lush-landscaping-stone-pathway-leads-entrance_191095-99768.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -316,7 +316,7 @@ export default function HomePage() {
|
||||
avatarSrc:
|
||||
"http://img.b2bpic.net/free-photo/happy-young-businessman-walking-near-business-center_171337-19784.jpg",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg",
|
||||
"http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg?_wi=3",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
@@ -343,7 +343,7 @@ export default function HomePage() {
|
||||
name: "Evergreen Residential Complex",
|
||||
price: "18 Units",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/modern-green-house-surrounded-by-lush-landscaping-stone-pathway-leads-entrance_191095-99768.jpg",
|
||||
"http://img.b2bpic.net/free-photo/modern-green-house-surrounded-by-lush-landscaping-stone-pathway-leads-entrance_191095-99768.jpg?_wi=3",
|
||||
imageAlt: "Evergreen residential complex with solar integration",
|
||||
},
|
||||
{
|
||||
@@ -351,7 +351,7 @@ export default function HomePage() {
|
||||
name: "Green Tech Office Building",
|
||||
price: "LEED Platinum",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg",
|
||||
"http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg?_wi=4",
|
||||
imageAlt: "Modern green tech office building",
|
||||
},
|
||||
{
|
||||
@@ -359,7 +359,7 @@ export default function HomePage() {
|
||||
name: "Historic Home Green Renovation",
|
||||
price: "Award Winner",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/business-person-planning-alternative-energies_23-2149205462.jpg",
|
||||
"http://img.b2bpic.net/free-photo/business-person-planning-alternative-energies_23-2149205462.jpg?_wi=2",
|
||||
imageAlt:
|
||||
"Successfully renovated historic home with modern green features",
|
||||
},
|
||||
@@ -384,7 +384,7 @@ export default function HomePage() {
|
||||
name: "Thomas Anderson",
|
||||
role: "Founder & CEO",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman_1262-20882.jpg",
|
||||
"http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman_1262-20882.jpg?_wi=1",
|
||||
imageAlt: "Thomas Anderson, Founder & CEO",
|
||||
},
|
||||
{
|
||||
@@ -392,7 +392,7 @@ export default function HomePage() {
|
||||
name: "Elena Rodriguez",
|
||||
role: "Lead Architect",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/mature-woman-architect-hardhat_1303-19299.jpg",
|
||||
"http://img.b2bpic.net/free-photo/mature-woman-architect-hardhat_1303-19299.jpg?_wi=1",
|
||||
imageAlt: "Elena Rodriguez, Lead Architect",
|
||||
},
|
||||
{
|
||||
@@ -400,7 +400,7 @@ export default function HomePage() {
|
||||
name: "Marcus Johnson",
|
||||
role: "Project Manager",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg",
|
||||
"http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg?_wi=1",
|
||||
imageAlt: "Marcus Johnson, Project Manager",
|
||||
},
|
||||
{
|
||||
@@ -408,7 +408,7 @@ export default function HomePage() {
|
||||
name: "Dr. Lisa Wong",
|
||||
role: "Sustainability Director",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/serene-businessman-with-glasses_1098-719.jpg",
|
||||
"http://img.b2bpic.net/free-photo/serene-businessman-with-glasses_1098-719.jpg?_wi=1",
|
||||
imageAlt: "Dr. Lisa Wong, Sustainability Director",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -85,21 +85,21 @@ export default function ProjectsPage() {
|
||||
id: "1",
|
||||
name: "Evergreen Residential Complex",
|
||||
price: "18 Units",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-green-house-surrounded-by-lush-landscaping-stone-pathway-leads-entrance_191095-99768.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-green-house-surrounded-by-lush-landscaping-stone-pathway-leads-entrance_191095-99768.jpg?_wi=4",
|
||||
imageAlt: "Evergreen residential complex with solar integration",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Green Tech Office Building",
|
||||
price: "LEED Platinum",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photovoltaics-plant-researchers-doing-videocall-optimize-energy-production_482257-120519.jpg?_wi=5",
|
||||
imageAlt: "Modern green tech office building",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Historic Home Green Renovation",
|
||||
price: "Award Winner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-person-planning-alternative-energies_23-2149205462.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-person-planning-alternative-energies_23-2149205462.jpg?_wi=3",
|
||||
imageAlt: "Successfully renovated historic home with modern green features",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -94,7 +94,7 @@ export default function ServicesPage() {
|
||||
title: "Solar Energy Systems",
|
||||
description: "Custom solar panel installation and integration designed for maximum efficiency and aesthetic appeal. We handle everything from assessment to installation and maintenance.",
|
||||
tag: "Renewable Energy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/foreman-businessman-solar-energy-station_1157-35691.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/foreman-businessman-solar-energy-station_1157-35691.jpg?_wi=2",
|
||||
imageAlt: "Solar panel installation on modern home",
|
||||
buttons: [
|
||||
{
|
||||
@@ -108,7 +108,7 @@ export default function ServicesPage() {
|
||||
title: "Sustainable Materials Selection",
|
||||
description: "Sourcing and installation of eco-certified building materials including recycled content, low-VOC products, and sustainably harvested timber.",
|
||||
tag: "Materials",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-textured-background_53876-33854.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-textured-background_53876-33854.jpg?_wi=2",
|
||||
imageAlt: "Eco-friendly building materials",
|
||||
buttons: [
|
||||
{
|
||||
@@ -122,7 +122,7 @@ export default function ServicesPage() {
|
||||
title: "Water Conservation Systems",
|
||||
description: "Advanced water management including rainwater harvesting, greywater recycling, and efficient plumbing fixtures to reduce consumption by up to 40%.",
|
||||
tag: "Conservation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-taking-care-her-plants-greenhouse_23-2149037282.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-taking-care-her-plants-greenhouse_23-2149037282.jpg?_wi=2",
|
||||
imageAlt: "Water conservation and efficiency systems",
|
||||
buttons: [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user