Compare commits

..

8 Commits

Author SHA1 Message Date
2469ba103e Update src/app/gallery/page.tsx 2026-05-23 09:09:02 +00:00
b14437ee99 Merge version_16 into main
Merge version_16 into main
2026-05-23 09:02:04 +00:00
17aecb495b Update src/app/gallery/page.tsx 2026-05-23 09:02:00 +00:00
08e84d5395 Merge version_15 into main
Merge version_15 into main
2026-05-23 09:00:31 +00:00
fed6e6bba1 Update src/app/gallery/page.tsx 2026-05-23 09:00:28 +00:00
147b115324 Merge version_14 into main
Merge version_14 into main
2026-05-23 08:59:19 +00:00
400b9f9f56 Update src/app/gallery/page.tsx 2026-05-23 08:59:16 +00:00
35314daeff Merge version_13 into main
Merge version_13 into main
2026-05-21 22:07:02 +00:00

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 FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function GalleryPage() {
const navItems = [
@@ -15,6 +15,13 @@ export default function GalleryPage() {
{ name: "Contact", id: "/contact" },
];
const galleryItems = [
{ id: "p1", brand: "Logistics", name: "Heavy Duty Loading", price: "Secure", rating: 5, reviewCount: "2026", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" },
{ id: "p2", brand: "Logistics", name: "Vehicle Securement", price: "Verified", rating: 5, reviewCount: "2026", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=2" },
{ id: "p3", brand: "Logistics", name: "Industrial Machinery", price: "Handled", rating: 5, reviewCount: "2026", imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" },
{ id: "p4", brand: "Logistics", name: "Bulk Inventory", price: "Tracking", rating: 5, reviewCount: "2026", imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg" }
];
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -37,17 +44,14 @@ export default function GalleryPage() {
</div>
<div id="gallery" data-section="gallery" className="py-20">
<FeatureCardTwentyFour
<ProductCardTwo
title="Professional Cargo Logistics"
description="An alternating grid showcase of our premium packing, loading, and tracking standards for Dubai to Ghana freight."
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
title="Cargo Packing Gallery"
description="See how we professionally secure your items for the journey from Dubai to Ghana."
features={[
{ id: "g1", title: "Luxury Protection", author: "Security", description: "High-grade crates for luxury goods.", tags: ["Luxury"], imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" },
{ id: "g2", title: "Vehicle Securement", author: "Logistics", description: "Professional strapping for vehicles.", tags: ["Auto"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=2" },
{ id: "g3", title: "Heavy Gear", author: "Industrial", description: "Robust loading techniques for machinery.", tags: ["Industrial"], imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" }
]}
products={galleryItems}
/>
</div>