Update src/app/gallery/page.tsx

This commit is contained in:
2026-05-10 11:07:16 +00:00
parent 41f5317232
commit 009491106d

View File

@@ -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" }
]}
/>
</div>