Compare commits

..

11 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
74f800d109 Update src/app/gallery/page.tsx 2026-05-21 22:06:59 +00:00
42cdf0de61 Merge version_12 into main
Merge version_12 into main
2026-05-21 21:52:14 +00:00
ddd3ec65ea Merge version_12 into main
Merge version_12 into main
2026-05-21 21:51:50 +00:00

View File

@@ -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 ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function GalleryPage() { export default function GalleryPage() {
const navItems = [ const navItems = [
@@ -15,6 +15,13 @@ export default function GalleryPage() {
{ name: "Contact", id: "/contact" }, { 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 ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="icon-arrow" defaultButtonVariant="icon-arrow"
@@ -37,12 +44,14 @@ export default function GalleryPage() {
</div> </div>
<div id="gallery" data-section="gallery" className="py-20"> <div id="gallery" data-section="gallery" className="py-20">
<ContactSplitForm <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} useInvertedBackground={false}
title="Upload Cargo Photos" products={galleryItems}
description="Document your container packing process by uploading photos here. Please include your tracking ID in the message."
inputs={[{ name: "name", type: "text", placeholder: "Full Name" }, { name: "id", type: "text", placeholder: "Tracking ID" }]}
textarea={{ name: "comment", placeholder: "Add photo descriptions...", rows: 5 }}
/> />
</div> </div>