Update src/pages/HomePage.tsx

This commit is contained in:
2026-06-21 18:10:03 +00:00
parent ff58df4015
commit f91ef88085

View File

@@ -6,7 +6,7 @@ import HeroOverlayMarquee from '@/components/sections/hero/HeroOverlayMarquee';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
import { Award, CheckCircle, Truck, Users, Wrench, Zap } from "lucide-react";
import { Truck, Wrench, Zap } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
@@ -18,20 +18,12 @@ export default function HomePage() {
tag="Trusted Contracting Partner"
title="Unique Green Contracting LLC"
description="Premium MEP, heavy transport, and renovation contracting services in the UAE. Committed to excellence and sustainability."
primaryButton={{
text: "Get a Quote", href: "#contact"}}
secondaryButton={{
text: "Our Services", href: "#services"}}
primaryButton={{ text: "Get a Quote", href: "#contact" }}
secondaryButton={{ text: "Our Services", href: "#services" }}
items={[
{
text: "Heavy Transport", icon: Truck,
},
{
text: "MEP Maintenance", icon: Zap,
},
{
text: "Full Renovation", icon: Wrench,
},
{ text: "Heavy Transport", icon: Truck },
{ text: "MEP Maintenance", icon: Zap },
{ text: "Full Renovation", icon: Wrench },
]}
imageSrc="http://img.b2bpic.net/free-photo/professional-architects-looking-plan_23-2147702511.jpg"
/>
@@ -45,12 +37,9 @@ export default function HomePage() {
title="High-Impact Services"
description="We specialize in end-to-end contracting services tailored to your specific requirements."
items={[
{
title: "Heavy Transport", description: "Safe, reliable transport for heavy machinery and materials across the UAE.", buttonIcon: "Truck", imageSrc: "http://img.b2bpic.net/free-photo/shipping-port-sunset-cargo-airplanes-trucks_23-2151998695.jpg"},
{
title: "MEP Maintenance", description: "Expert mechanical, electrical, and plumbing maintenance services for commercial and residential sectors.", buttonIcon: "Zap", imageSrc: "http://img.b2bpic.net/free-photo/engineer-writing-condenser-values_482257-90848.jpg"},
{
title: "Renovation Services", description: "Turning spaces into premium environments with our comprehensive renovation and fit-out solutions.", buttonIcon: "Hammer", imageSrc: "http://img.b2bpic.net/free-photo/set-designer-work-indoors_23-2149836952.jpg"},
{ title: "Heavy Transport", description: "Safe, reliable transport for heavy machinery and materials across the UAE.", buttonIcon: "Truck", imageSrc: "http://img.b2bpic.net/free-photo/shipping-port-sunset-cargo-airplanes-trucks_23-2151998695.jpg" },
{ title: "MEP Maintenance", description: "Expert mechanical, electrical, and plumbing maintenance services for commercial and residential sectors.", buttonIcon: "Zap", imageSrc: "http://img.b2bpic.net/engineer-writing-condenser-values_482257-90848.jpg" },
{ title: "Renovation Services", description: "Turning spaces into premium environments with our comprehensive renovation and fit-out solutions.", buttonIcon: "Hammer", imageSrc: "http://img.b2bpic.net/free-photo/set-designer-work-indoors_23-2149836952.jpg" },
]}
/>
</SectionErrorBoundary>
@@ -82,12 +71,9 @@ export default function HomePage() {
title="Performance Standards"
description="Our commitment to quality ensures project success every time."
metrics={[
{
icon: "Award", title: "Years Experience", value: "15+"},
{
icon: "CheckCircle", title: "Projects Completed", value: "500+"},
{
icon: "Users", title: "Satisfied Clients", value: "200+"},
{ icon: "Award", title: "Years Experience", value: "15+" },
{ icon: "CheckCircle", title: "Projects Completed", value: "500+" },
{ icon: "Users", title: "Satisfied Clients", value: "200+" },
]}
/>
</SectionErrorBoundary>
@@ -100,16 +86,11 @@ export default function HomePage() {
title="Trusted by Industry Leaders"
description="Real feedback from our partners across the contracting industry."
testimonials={[
{
name: "Ali Al-Farsi", role: "Site Director", quote: "Reliable and efficient. The best transport services in the region.", imageSrc: "http://img.b2bpic.net/free-photo/executives-with-architect_1098-582.jpg"},
{
name: "John Smith", role: "Facility Manager", quote: "Their MEP team is incredibly responsive and highly skilled.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-male-electrician-standing-against-wall_23-2148087578.jpg"},
{
name: "Fatima Zahra", role: "Architect", quote: "Professional renovation quality that exceeds our expectations.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg"},
{
name: "David Brown", role: "Project Owner", quote: "A truly unique contracting service. Highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-with-safety-vest-crossed-arms_23-2148269352.jpg"},
{
name: "Ahmed Ibrahim", role: "Head Developer", quote: "Great communication and delivered ahead of schedule.", imageSrc: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-354.jpg"},
{ name: "Ali Al-Farsi", role: "Site Director", quote: "Reliable and efficient. The best transport services in the region.", imageSrc: "http://img.b2bpic.net/free-photo/executives-with-architect_1098-582.jpg" },
{ name: "John Smith", role: "Facility Manager", quote: "Their MEP team is incredibly responsive and highly skilled.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-male-electrician-standing-against-wall_23-2148087578.jpg" },
{ name: "Fatima Zahra", role: "Architect", quote: "Professional renovation quality that exceeds our expectations.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg" },
{ name: "David Brown", role: "Project Owner", quote: "A truly unique contracting service. Highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-with-safety-vest-crossed-arms_23-2148269352.jpg" },
{ name: "Ahmed Ibrahim", role: "Head Developer", quote: "Great communication and delivered ahead of schedule.", imageSrc: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-354.jpg" },
]}
/>
</SectionErrorBoundary>
@@ -124,12 +105,9 @@ export default function HomePage() {
categories={[
{
name: "General", items: [
{
question: "Are you licensed?", answer: "Yes, we are fully licensed for MEP and construction contracting."},
{
question: "Do you provide consultations?", answer: "Yes, contact us to schedule an on-site consultation."},
{
question: "What is your coverage area?", answer: "We operate across all major regions in the UAE."},
{ question: "Are you licensed?", answer: "Yes, we are fully licensed for MEP and construction contracting." },
{ question: "Do you provide consultations?", answer: "Yes, contact us to schedule an on-site consultation." },
{ question: "What is your coverage area?", answer: "We operate across all major regions in the UAE." },
],
},
]}
@@ -143,8 +121,7 @@ export default function HomePage() {
tag="Our Partners"
title="We Work with the Best"
description="Collaborating with industry-leading entities to deliver excellence."
names={[
"Alpha Construction", "Dubai Logistics Hub", "MEP Solutions Co", "Infrastructure Pro", "Green Buildings Ltd", "Regional Transport", "Urban Renovations"]}
names={["Alpha Construction", "Dubai Logistics Hub", "MEP Solutions Co", "Infrastructure Pro", "Green Buildings Ltd", "Regional Transport", "Urban Renovations"]}
/>
</SectionErrorBoundary>
</div>
@@ -154,13 +131,11 @@ export default function HomePage() {
<ContactCta
tag="Ready to Start?"
text="Discuss your project with us today by calling +971 553882921"
primaryButton={{
text: "Call +971 553882921", href: "tel:+971553882921"}}
secondaryButton={{
text: "Email Support", href: "mailto:info@uniquegreen.ae"}}
primaryButton={{ text: "Call +971 553882921", href: "tel:+971553882921" }}
secondaryButton={{ text: "Email Support", href: "mailto:info@uniquegreen.ae" }}
/>
</SectionErrorBoundary>
</div>
</>
);
}
}