Compare commits

..

7 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
6b54728f69 Update src/app/page.tsx 2026-05-23 09:41:07 +00:00
8cedb657d6 Update src/app/gallery/page.tsx 2026-05-23 09:41:07 +00:00
6a193f9871 Merge version_22 into main
Merge version_22 into main
2026-05-23 09:39:15 +00:00
2 changed files with 17 additions and 12 deletions

View File

@@ -44,17 +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"
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

View File

@@ -138,6 +138,7 @@ export default function LandingPage() {
title="Professional Cargo Logistics"
description="A free-flowing view of our premium packing and logistics standards."
animationType="slide-up"
carouselMode="auto"
gridVariant="three-columns-all-equal-width"
textboxLayout="split"
useInvertedBackground={false}