From 009491106d8f0aa571ed9a004550e00c80016ad8 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 10 May 2026 11:07:16 +0000 Subject: [PATCH] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index f15bd5c..157abd4 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Check, Zap, Scale, Shield } from 'lucide-react'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; @@ -54,10 +55,10 @@ export default function GalleryPage() { title="Our Standards" description="How we guarantee quality in every build." features={[ - { title: "Compliance", description: "Global safety adherence.", imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-modern-architecture-facade_1359-831.jpg", imageAlt: "modern architecture exterior building" }, - { title: "Innovation", description: "Modern technical workflows.", imageSrc: "http://img.b2bpic.net/free-photo/photovoltaics-factory-manager-working-with-solar-engineering-team-doing-brainstorming-improving_482257-135271.jpg", imageAlt: "modern architecture exterior building" }, - { title: "Precision", description: "Accuracy in all blueprints.", imageSrc: "http://img.b2bpic.net/free-photo/shareholders-team-ensure-factory-follows-safety-procedures-before-investing_482257-119563.jpg", imageAlt: "modern architecture exterior building" }, - { title: "Durability", description: "Built for longevity.", imageSrc: "http://img.b2bpic.net/free-photo/coffee-time-me-please_329181-17310.jpg", imageAlt: "modern architecture exterior building" } + { title: "Compliance", description: "Global safety adherence.", buttonIcon: Check, imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-modern-architecture-facade_1359-831.jpg", imageAlt: "modern architecture exterior building" }, + { title: "Innovation", description: "Modern technical workflows.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/photovoltaics-factory-manager-working-with-solar-engineering-team-doing-brainstorming-improving_482257-135271.jpg", imageAlt: "modern architecture exterior building" }, + { title: "Precision", description: "Accuracy in all blueprints.", buttonIcon: Scale, imageSrc: "http://img.b2bpic.net/free-photo/shareholders-team-ensure-factory-follows-safety-procedures-before-investing_482257-119563.jpg", imageAlt: "modern architecture exterior building" }, + { title: "Durability", description: "Built for longevity.", buttonIcon: Shield, imageSrc: "http://img.b2bpic.net/free-photo/coffee-time-me-please_329181-17310.jpg", imageAlt: "modern architecture exterior building" } ]} />