Compare commits

...

16 Commits

Author SHA1 Message Date
42622a863f Update src/app/page.tsx 2026-05-23 09:58:55 +00:00
5aedf27be4 Update src/app/gallery/page.tsx 2026-05-23 09:58:54 +00:00
507cf7631e Update src/app/page.tsx 2026-05-23 09:58:09 +00:00
7d3ee074e4 Update src/app/gallery/page.tsx 2026-05-23 09:58:09 +00:00
2b90eb6a0b Merge version_28 into main
Merge version_28 into main
2026-05-23 09:56:25 +00:00
7c990a2156 Update src/app/page.tsx 2026-05-23 09:56:22 +00:00
5260ba8ad3 Update src/app/gallery/page.tsx 2026-05-23 09:56:21 +00:00
16f7182325 Merge version_27 into main
Merge version_27 into main
2026-05-23 09:54:41 +00:00
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
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
2 changed files with 15 additions and 20 deletions

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
export default function GalleryPage() {
const navItems = [
@@ -44,17 +44,14 @@ 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 id="gallery" data-section="gallery" className="py-24">
<FeatureCardSix
title="Our Logistics Gallery"
description="A look at our professional cargo handling services."
textboxLayout="split"
useInvertedBackground={false}
features={galleryItems}
/>
</div>
<div id="footer" data-section="footer">
@@ -70,4 +67,4 @@ export default function GalleryPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -8,7 +8,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
export default function LandingPage() {
const navItems = [
@@ -134,15 +134,13 @@ export default function LandingPage() {
</div>
<div id="gallery" data-section="gallery" className="py-20">
<FeatureCardOne
<FeatureCardSix
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"
description="A free-flowing, spacious view of our premium packing and logistics standards."
textboxLayout="split"
useInvertedBackground={false}
features={galleryItems}
containerClassName="max-w-7xl mx-auto px-8"
/>
</div>
@@ -159,4 +157,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}