Compare commits

..

6 Commits

Author SHA1 Message Date
ad001495bd Update src/app/page.tsx 2026-05-23 09:54:38 +00:00
23212fd5fb Merge version_26 into main
Merge version_26 into main
2026-05-23 09:49:14 +00:00
8aa2dccec1 Update src/app/gallery/page.tsx 2026-05-23 09:49:08 +00:00
e32f65e1d1 Merge version_25 into main
Merge version_25 into main
2026-05-23 09:47:52 +00:00
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
2 changed files with 21 additions and 17 deletions

View File

@@ -44,20 +44,22 @@ 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="two-columns-alternating-heights"
carouselMode="auto"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={galleryItems}
gridClassName="gap-8 md:gap-12 lg:gap-16"
cardClassName="min-h-[400px] md:min-h-[500px]"
/>
</div>
{galleryItems.map((item, index) => (
<div key={index} id={`gallery-${index}`} data-section="gallery" className="py-24 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]}
containerClassName="max-w-7xl mx-auto px-6"
gridClassName="gap-12"
cardClassName="min-h-[500px]"
/>
</div>
))}
<div id="footer" data-section="footer">
<FooterSimple

View File

@@ -136,13 +136,15 @@ export default function LandingPage() {
<div id="gallery" data-section="gallery" className="py-20">
<FeatureCardOne
title="Professional Cargo Logistics"
description="A free-flowing view of our premium packing and logistics standards."
description="A free-flowing, spacious view of our premium packing and logistics standards."
animationType="slide-up"
carouselMode="auto"
gridVariant="three-columns-all-equal-width"
carouselMode="buttons"
gridVariant="bento-grid"
textboxLayout="split"
useInvertedBackground={false}
features={galleryItems}
containerClassName="max-w-7xl mx-auto px-8"
gridClassName="gap-16"
/>
</div>