From 7457653ac09b9547714c3504b0f71979773910a6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 18:14:52 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index c1f2f26..67e43ee 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -147,7 +147,7 @@ export default function AboutPage() { name: "Rajesh Kumar", role: "Production Manager, TechTrade Industries", testimonial: "Gidon Engineering delivered precision CNC parts ahead of schedule. Their quality control is exceptional and they understand industrial timelines perfectly.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-successful-businessman-standing-restaurant-with-crossed-arm_23-2147955259.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-successful-businessman-standing-restaurant-with-crossed-arm_23-2147955259.jpg?_wi=2", imageAlt: "Rajesh Kumar - Production Manager", icon: Star, }, @@ -156,7 +156,7 @@ export default function AboutPage() { name: "Priya Sharma", role: "Operations Head, HyderaBuild Manufacturing", testimonial: "Their fabrication work transformed our production process. Reliable, professional, and they treat every project with meticulous attention to detail.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-black-businesswoman-office_637285-9877.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-black-businesswoman-office_637285-9877.jpg?_wi=2", imageAlt: "Priya Sharma - Operations Head", icon: Star, }, @@ -165,7 +165,7 @@ export default function AboutPage() { name: "Vikram Patel", role: "Technical Director, Precision Dynamics Ltd", testimonial: "The emergency repair service saved our production line. Fast response, expert diagnosis, and quality repairs. Highly recommended for industrial clients.", - imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3693.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3693.jpg?_wi=2", imageAlt: "Vikram Patel - Technical Director", icon: Star, }, -- 2.49.1 From c8100fde3781cea8e04afd6dfada30a2494bf82c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 18:14:52 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 1f308a0..a31c9da 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -94,7 +94,7 @@ export default function ContactPage() { required: true, }} useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/worker-working-suit-fixing-metal-rack_140725-11110.jpg" + imageSrc="http://img.b2bpic.net/free-photo/worker-working-suit-fixing-metal-rack_140725-11110.jpg?_wi=2" imageAlt="industrial workshop manufacturing floor equipment setup" mediaAnimation="slide-up" mediaPosition="left" -- 2.49.1 From 194ff3168dbc8fcf6b4a25d354c9cb06fa34e75e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 18:14:53 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 41 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..c790822 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,55 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Montserrat, Inter } 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 { Montserrat } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Gidon Engineering Works - CNC Machining & Fabrication Services Hyderabad", + description: "Professional CNC machining, custom fabrication, and industrial repair services in Hyderabad. Serving factories, manufacturers, and industrial companies since 2018. Get your engineering quote today.", + keywords: "CNC machining Hyderabad, metal fabrication services, custom machine parts, industrial repair, welding services, engineering workshop, precision manufacturing", + metadataBase: new URL("https://gidonengineeringworks.com"), + alternates: { + canonical: "https://gidonengineeringworks.com", + }, + openGraph: { + title: "Gidon Engineering Works - Industrial Manufacturing Solutions", + description: "Premium CNC machining, fabrication, and repair services for industrial clients. Expert engineering since 2018.", + url: "https://gidonengineeringworks.com", + siteName: "Gidon Engineering Works", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/automation-engineer-maintains-solar-panel-systems-industrial-facility_482257-126793.jpg", + alt: "Gidon Engineering Works - Industrial Manufacturing Facility", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Gidon Engineering Works - CNC & Fabrication", + description: "Professional industrial manufacturing services in Hyderabad. Precision, reliability, expertise.", + images: [ + "http://img.b2bpic.net/free-photo/automation-engineer-maintains-solar-panel-systems-industrial-facility_482257-126793.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +58,9 @@ export default function RootLayout({ return ( - + {children}