From 576e7c45bae623455bc349efe7f5c8962c7c964c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 22:30:07 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5becdb8..b08ab92 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -51,7 +51,7 @@ export default function AboutPage() { title: "Luxury Projects Completed", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/black-white-scene-showcasing-life-construction-workers-site_23-2151333281.jpg" + imageSrc="http://img.b2bpic.net/free-photo/black-white-scene-showcasing-life-construction-workers-site_23-2151333281.jpg?_wi=2" imageAlt="Monarch construction team at work" mediaAnimation="slide-up" metricsAnimation="slide-up" @@ -73,7 +73,7 @@ export default function AboutPage() { role: "Homeowner", company: "San Francisco, CA", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-posing-outside_74855-1551.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-posing-outside_74855-1551.jpg?_wi=3", imageAlt: "David Thompson", }, { @@ -82,7 +82,7 @@ export default function AboutPage() { role: "Real Estate Developer", company: "Bay Area Development", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-businesswoman-smiling-camera_74855-4022.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-businesswoman-smiling-camera_74855-4022.jpg?_wi=3", imageAlt: "Jessica Lee", }, { @@ -91,7 +91,7 @@ export default function AboutPage() { role: "Property Owner", company: "Peninsula Estates", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/handsome-gay-official-suit-looking-camera-front-view-bearded-caucasian-man-smiling-camera-getting-dressed-wedding-ceremony-with-lover-lgbt-love-marriage-concept_74855-22937.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/handsome-gay-official-suit-looking-camera-front-view-bearded-caucasian-man-smiling-camera-getting-dressed-wedding-ceremony-with-lover-lgbt-love-marriage-concept_74855-22937.jpg?_wi=3", imageAlt: "Robert Martinez", }, ]} -- 2.49.1 From 7a125a20b9512eb20343c467fd0d8b52b2b26c31 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 22:30:07 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cbe480..350852b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_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 { Open_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); + const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Monarch Builders & Developers | Luxury Home Construction", + description: "Premium luxury home builders specializing in custom construction, high-end renovations, and property development. 15+ years excellence. 120+ completed projects.", + keywords: "luxury home builders, custom home construction, high-end renovation, property developers, San Francisco builders", + robots: { + index: true, + follow: true, + }, + metadataBase: new URL("https://monarchbuilders.com"), + alternates: { + canonical: "https://monarchbuilders.com", + }, + openGraph: { + title: "Monarch Builders & Developers - Luxury Construction", + description: "Build your legacy with Monarch. Premium craftsmanship. Transparent process. 100% client satisfaction.", + type: "website", + siteName: "Monarch Builders & Developers", + url: "https://monarchbuilders.com", + images: [ + { + url: "http://img.b2bpic.net/free-photo/low-angle-shot-white-church-with-beautiful-flower-garden_181624-27038.jpg", + alt: "luxury modern home architecture exterior", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Monarch Builders & Developers - Premium Home Construction", + description: "Luxury home building with precision craftsmanship and transparent processes", + images: ["http://img.b2bpic.net/free-photo/low-angle-shot-white-church-with-beautiful-flower-garden_181624-27038.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}