Compare commits

..

4 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
c26631bbdd Update src/app/gallery/page.tsx 2026-05-23 09:46:04 +00:00
d38d8dff1b Merge version_23 into main
Merge version_23 into main
2026-05-23 09:41:10 +00:00

View File

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