Compare commits
28 Commits
version_21
...
version_31
| Author | SHA1 | Date | |
|---|---|---|---|
| 6d232fac11 | |||
| 5111b475fe | |||
| 56710d6c3d | |||
| 7b4022a4b7 | |||
| f7c31a84ec | |||
| 42622a863f | |||
| 5aedf27be4 | |||
| 5e63f0c69a | |||
| 507cf7631e | |||
| 7d3ee074e4 | |||
| 2b90eb6a0b | |||
| 7c990a2156 | |||
| 5260ba8ad3 | |||
| 16f7182325 | |||
| ad001495bd | |||
| 23212fd5fb | |||
| 8aa2dccec1 | |||
| e32f65e1d1 | |||
| 138473bbd8 | |||
| 57e90623be | |||
| c26631bbdd | |||
| d38d8dff1b | |||
| 6b54728f69 | |||
| 8cedb657d6 | |||
| 6a193f9871 | |||
| fae56d8938 | |||
| 0cfc3ad0cc | |||
| db370fe363 |
@@ -4,9 +4,23 @@ 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 ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import { useState } from 'react';
|
||||
|
||||
export default function GalleryPage() {
|
||||
const [galleryItems, setGalleryItems] = useState([
|
||||
{ title: "Heavy Duty Loading", description: "Secure Logistics", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" },
|
||||
{ title: "Vehicle Securement", description: "Verified 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 Safely", 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: "Real-time Tracking", imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg" }
|
||||
]);
|
||||
|
||||
const handleFileUpload = (index: number, newImageUrl: string) => {
|
||||
const updatedItems = [...galleryItems];
|
||||
updatedItems[index].imageSrc = newImageUrl;
|
||||
setGalleryItems(updatedItems);
|
||||
};
|
||||
|
||||
const navItems = [
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "How It Works", id: "/how-it-works" },
|
||||
@@ -16,13 +30,6 @@ 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"
|
||||
@@ -44,23 +51,21 @@ export default function GalleryPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery" className="py-20">
|
||||
<ProductCardTwo
|
||||
title="Professional Cargo Logistics"
|
||||
description="An alternating grid showcase of our premium packing, loading, and tracking standards for Dubai to Ghana freight."
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
products={galleryItems}
|
||||
/>
|
||||
<div id="gallery" data-section="gallery" className="py-24">
|
||||
<FeatureCardSix
|
||||
title="Our Logistics Gallery"
|
||||
description="A look at our professional cargo handling services."
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={galleryItems}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/services" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "/terms" }] },
|
||||
]}
|
||||
bottomLeftText="© 2026 Sir James Delivery Company."
|
||||
bottomRightText="Safe. Swift. Secure."
|
||||
@@ -69,4 +74,4 @@ export default function GalleryPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -8,9 +8,17 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import { useState } from 'react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const [galleryItems] = useState([
|
||||
{ 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" }
|
||||
]);
|
||||
|
||||
const navItems = [
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "How It Works", id: "/how-it-works" },
|
||||
@@ -19,13 +27,6 @@ export default function LandingPage() {
|
||||
{ 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?_wi=1" }
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -134,14 +135,13 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery" className="py-20">
|
||||
<ProductCardTwo
|
||||
<FeatureCardSix
|
||||
title="Professional Cargo Logistics"
|
||||
description="An alternating grid showcase of our premium packing, loading, and tracking standards for Dubai to Ghana freight."
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
description="A free-flowing, spacious view of our premium packing and logistics standards."
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
products={galleryItems}
|
||||
features={galleryItems}
|
||||
containerClassName="max-w-7xl mx-auto px-8"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -149,7 +149,7 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/services" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "/terms" }] },
|
||||
]}
|
||||
bottomLeftText="© 2026 Sir James Delivery Company."
|
||||
bottomRightText="Safe. Swift. Secure."
|
||||
@@ -158,4 +158,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user