"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; 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'; export default function LandingPage() { 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: "Contact", id: "/contact" }, ]; const galleryItems = [ { title: "Heavy Duty Loading", description: "Securing goods for transit", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" }, { title: "Vehicle Securement", description: "Professional loading standards", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=2" }, { title: "Industrial Machinery", description: "Handled with precision", imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" }, { title: "Bulk Inventory", description: "Tracking every step", imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg?_wi=1" } ]; return (
); }