Merge version_1 into main #1
@@ -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,
|
||||
},
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +72,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -205,7 +205,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Rajesh Kumar - Production Manager",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -214,7 +214,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Priya Sharma - Operations Head",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -223,7 +223,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Vikram Patel - Technical Director",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -232,7 +232,7 @@ export default function HomePage() {
|
||||
name: "Anjali Desai",
|
||||
role: "Procurement Officer, AutoParts Central",
|
||||
testimonial: "Consistent quality, competitive pricing, and excellent communication. Gidon Engineering is our go-to partner for custom machine parts manufacturing.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-employee-with-white-shirt-black-suit_1139-296.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-employee-with-white-shirt-black-suit_1139-296.jpg?_wi=1",
|
||||
imageAlt: "Anjali Desai - Procurement Officer",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -241,7 +241,7 @@ export default function HomePage() {
|
||||
name: "Arun Singh",
|
||||
role: "Factory Manager, MetalWorks Solutions",
|
||||
testimonial: "Their team understands complex fabrication requirements and delivers without compromise. Professionalism at every step of the process.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg?_wi=1",
|
||||
imageAlt: "Arun Singh - Factory Manager",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -250,7 +250,7 @@ export default function HomePage() {
|
||||
name: "Deepa Nair",
|
||||
role: "Engineering Lead, Industrial Systems Corp",
|
||||
testimonial: "From design consultation to final delivery, Gidon Engineering provided exceptional mechanical engineering solutions tailored to our specific needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-engineers-work-hours-job-site_23-2151589571.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-engineers-work-hours-job-site_23-2151589571.jpg?_wi=1",
|
||||
imageAlt: "Deepa Nair - Engineering Lead",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -302,7 +302,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="Modern engineering workshop with CNC equipment"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
|
||||
@@ -157,7 +157,7 @@ export default function ServicesPage() {
|
||||
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",
|
||||
"http://img.b2bpic.net/free-photo/portrait-happy-successful-businessman-standing-restaurant-with-crossed-arm_23-2147955259.jpg?_wi=3",
|
||||
imageAlt: "Rajesh Kumar - Production Manager",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -168,7 +168,7 @@ export default function ServicesPage() {
|
||||
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",
|
||||
"http://img.b2bpic.net/free-photo/portrait-confident-black-businesswoman-office_637285-9877.jpg?_wi=3",
|
||||
imageAlt: "Priya Sharma - Operations Head",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -179,7 +179,7 @@ export default function ServicesPage() {
|
||||
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",
|
||||
"http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3693.jpg?_wi=3",
|
||||
imageAlt: "Vikram Patel - Technical Director",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -190,7 +190,7 @@ export default function ServicesPage() {
|
||||
testimonial:
|
||||
"Consistent quality, competitive pricing, and excellent communication. Gidon Engineering is our go-to partner for custom machine parts manufacturing.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/successful-employee-with-white-shirt-black-suit_1139-296.jpg",
|
||||
"http://img.b2bpic.net/free-photo/successful-employee-with-white-shirt-black-suit_1139-296.jpg?_wi=2",
|
||||
imageAlt: "Anjali Desai - Procurement Officer",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -201,7 +201,7 @@ export default function ServicesPage() {
|
||||
testimonial:
|
||||
"Their team understands complex fabrication requirements and delivers without compromise. Professionalism at every step of the process.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg",
|
||||
"http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg?_wi=2",
|
||||
imageAlt: "Arun Singh - Factory Manager",
|
||||
icon: Star,
|
||||
},
|
||||
@@ -212,7 +212,7 @@ export default function ServicesPage() {
|
||||
testimonial:
|
||||
"From design consultation to final delivery, Gidon Engineering provided exceptional mechanical engineering solutions tailored to our specific needs.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-engineers-work-hours-job-site_23-2151589571.jpg",
|
||||
"http://img.b2bpic.net/free-photo/portrait-engineers-work-hours-job-site_23-2151589571.jpg?_wi=2",
|
||||
imageAlt: "Deepa Nair - Engineering Lead",
|
||||
icon: Star,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user