Compare commits

..

2 Commits

Author SHA1 Message Date
138473bbd8 Update src/app/gallery/page.tsx 2026-05-23 09:47:49 +00:00
57e90623be Merge version_24 into main
Merge version_24 into main
2026-05-23 09:46:10 +00:00

View File

@@ -44,20 +44,21 @@ export default function GalleryPage() {
/> />
</div> </div>
<div id="gallery" data-section="gallery" className="py-20"> {galleryItems.map((item, index) => (
<FeatureCardOne <div key={index} id={`gallery-${index}`} data-section="gallery" className="py-12 border-b border-gray-100">
title="Professional Cargo Logistics" <FeatureCardOne
description="Our premium packing, loading, and tracking standards." title={item.title}
gridVariant="two-columns-alternating-heights" description={item.description}
carouselMode="auto" gridVariant="two-columns-alternating-heights"
animationType="slide-up" animationType="slide-up"
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
features={galleryItems} features={[item]}
gridClassName="gap-8 md:gap-12 lg:gap-16" gridClassName="gap-8"
cardClassName="min-h-[400px] md:min-h-[500px]" cardClassName="min-h-[400px]"
/> />
</div> </div>
))}
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterSimple