From 99e52f1412e4c9351db9f0314c6c914a1ca870d9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:02:45 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d5e594c..21191b8 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -89,7 +89,7 @@ export default function AboutPage() { { text: "Learn More", href: "#values" }, { text: "Contact Us", href: "#contact" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/man-using-smartphone-near-colleague_23-2147808088.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-using-smartphone-near-colleague_23-2147808088.jpg?_wi=4" imageAlt="Guhan Builders team and company office" useInvertedBackground={false} /> @@ -106,21 +106,21 @@ export default function AboutPage() { id: 1, title: "Trust & Transparency", description: "Every project is backed by complete legal documentation, DTCP approvals, and transparent pricing. We believe in honest dealings and long-term customer relationships.", - imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=4", imageAlt: "Trust and transparency in real estate", }, { id: 2, title: "Quality Development", description: "Our developments feature modern infrastructure, green spaces, safety features, and planned amenities. We construct with longevity and community welfare in mind.", - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=4", imageAlt: "Quality residential development", }, { id: 3, title: "Customer-First Approach", description: "Your satisfaction is our success. We provide ongoing support from site selection through registration, construction assistance, and post-sale services.", - imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=4", imageAlt: "Customer support and satisfaction", }, ]} @@ -134,12 +134,12 @@ export default function AboutPage() {
Date: Wed, 11 Mar 2026 07:02:46 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..89b99bd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Guhan Builders - DTCP Approved Plots Chennai | Affordable Real Estate", + description: "Trusted real estate builder offering DTCP approved plots in Chennai. Affordable residential land investment opportunities. Book site visit now. Call 098409 15150", + keywords: "DTCP plots Chennai, affordable residential plots, real estate builder Chennai, land investment Chennai, Kolathur plots, residential property Chennai", + metadataBase: new URL("https://guhanbuilders.com"), + alternates: { + canonical: "https://guhanbuilders.com", + }, + openGraph: { + title: "Guhan Builders - Affordable DTCP Approved Plots in Chennai", + description: "Invest in trusted DTCP approved residential plots in prime Chennai locations. 4.5★ rated builder with 2000+ happy customers. Book site visit now.", + url: "https://guhanbuilders.com", + siteName: "Guhan Builders and Promoters", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/aerial-view-farm-fields_1401-233.jpg", + alt: "Guhan Builders Residential Plots Development", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Guhan Builders - Affordable DTCP Approved Plots Chennai", + description: "Trusted real estate developer. DTCP approved plots. Affordable prices. 4.5★ rated. Book site visit now.", + images: ["http://img.b2bpic.net/free-photo/aerial-view-farm-fields_1401-233.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}