"use client"; 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 ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; export default function LoadingGalleryPage() { const navItems = [ { name: "Services", id: "/services" }, { name: "How It Works", id: "/how-it-works" }, { name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Gallery", id: "/gallery" }, { name: "Loading Gallery", id: "/loading-gallery" }, { name: "Contact", id: "/contact" }, ]; const loadingProducts = [ { id: "1", brand: "Logistics", name: "Precision Loading", price: "$100", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg" }, { id: "2", brand: "Logistics", name: "Heavy Duty Lifting", price: "$250", rating: 5, reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg" }, { id: "3", brand: "Logistics", name: "Container Security", price: "$150", rating: 4, reviewCount: "28", imageSrc: "http://img.b2bpic.net/free-photo/technological-futuristic-holograms-logistics-means-transport_23-2151663056.jpg" }, ]; return ( ); }