Compare commits
12 Commits
version_25
...
version_29
| Author | SHA1 | Date | |
|---|---|---|---|
| 42622a863f | |||
| 5aedf27be4 | |||
| 507cf7631e | |||
| 7d3ee074e4 | |||
| 2b90eb6a0b | |||
| 7c990a2156 | |||
| 5260ba8ad3 | |||
| 16f7182325 | |||
| ad001495bd | |||
| 23212fd5fb | |||
| 8aa2dccec1 | |||
| e32f65e1d1 |
@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
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() {
|
export default function GalleryPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -44,21 +44,15 @@ export default function GalleryPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{galleryItems.map((item, index) => (
|
<div id="gallery" data-section="gallery" className="py-24">
|
||||||
<div key={index} id={`gallery-${index}`} data-section="gallery" className="py-12 border-b border-gray-100">
|
<FeatureCardSix
|
||||||
<FeatureCardOne
|
title="Our Logistics Gallery"
|
||||||
title={item.title}
|
description="A look at our professional cargo handling services."
|
||||||
description={item.description}
|
|
||||||
gridVariant="two-columns-alternating-heights"
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[item]}
|
features={galleryItems}
|
||||||
gridClassName="gap-8"
|
|
||||||
cardClassName="min-h-[400px]"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
))}
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
|||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
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() {
|
export default function LandingPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -134,15 +134,13 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="gallery" data-section="gallery" className="py-20">
|
<div id="gallery" data-section="gallery" className="py-20">
|
||||||
<FeatureCardOne
|
<FeatureCardSix
|
||||||
title="Professional Cargo Logistics"
|
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"
|
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={galleryItems}
|
features={galleryItems}
|
||||||
|
containerClassName="max-w-7xl mx-auto px-8"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -159,4 +157,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user