Compare commits
53 Commits
version_15
...
version_30
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| 3eddb08283 | |||
| b26c6f314e | |||
| 19ea07a95a | |||
| 674d415262 | |||
| e691c24a5e | |||
| 913b056bad | |||
| f6a9e61066 | |||
| a1db0eb872 | |||
| aaf69b4a41 | |||
| 5a4c243159 | |||
| 18a12c512c | |||
| 9f1bdc6148 | |||
| e4dd579c1c | |||
| 7abe20b467 | |||
| 89b1bffe4c | |||
| dc8f4a0a81 | |||
| ecd8145788 | |||
| 126022fe97 | |||
| 42eea3b1c7 | |||
| 4208506b84 | |||
| 7783bf81d9 | |||
| 7db0769981 | |||
| 08e4ee928a | |||
| 2469ba103e | |||
| b14437ee99 | |||
| 17aecb495b | |||
| 08e84d5395 |
@@ -4,14 +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 FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||
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 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" },
|
||||
];
|
||||
|
||||
@@ -36,21 +45,13 @@ export default function GalleryPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery" className="py-20">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-actions"
|
||||
<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}
|
||||
title="Cargo Packing Gallery"
|
||||
description="See how we professionally secure your items for the journey from Dubai to Ghana. Site administrators can upload new images directly below."
|
||||
buttons={[
|
||||
{ text: "Upload Image", onClick: () => alert("Admin Access Required: This feature connects to the secure media management dashboard.") }
|
||||
]}
|
||||
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" }
|
||||
]}
|
||||
features={galleryItems}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -58,7 +59,7 @@ export default function GalleryPage() {
|
||||
<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."
|
||||
|
||||
66
src/app/loading-gallery/page.tsx
Normal file
66
src/app/loading-gallery/page.tsx
Normal file
@@ -0,0 +1,66 @@
|
||||
"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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={navItems}
|
||||
brandName="Sir James Delivery"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery" className="py-20">
|
||||
<ProductCatalog
|
||||
layout="section"
|
||||
products={loadingProducts}
|
||||
/>
|
||||
</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: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2026 Sir James Delivery Company."
|
||||
bottomRightText="Safe. Swift. Secure."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -8,8 +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 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" },
|
||||
@@ -46,7 +55,7 @@ export default function LandingPage() {
|
||||
title="From Dubai to Ghana: Your Cargo, Delivered Safely and Fast."
|
||||
description="Whether it’s luxury watches, vehicles, or heavy industrial gym machinery, Sir James Delivery Company safely transports your goods from the heart of Dubai straight to our secure warehouse in Ghana. No delays. No hidden fees."
|
||||
testimonials={[
|
||||
{ name: "Kwame O.", handle: "", testimonial: "Excellent service. My heavy equipment arrived in perfect condition.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg" },
|
||||
{ name: "Kwame O.", handle: "", testimonial: "Excellent service. My heavy equipment arrived in perfect condition.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg?_wi=2" },
|
||||
{ name: "Amina B.", handle: "", testimonial: "The best shipping partner for my perfume wholesale business.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662916.jpg" },
|
||||
{ name: "John S.", handle: "", testimonial: "Vehicle transport from Dubai was seamless and fast.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662944.jpg" },
|
||||
{ name: "Sarah L.", handle: "", testimonial: "Great handling of industrial gym machines. Very professional.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/top-view-empty-perfume-bottle_23-2149234340.jpg" },
|
||||
@@ -125,11 +134,22 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery" className="py-20">
|
||||
<FeatureCardSix
|
||||
title="Professional Cargo Logistics"
|
||||
description="A free-flowing, spacious view of our premium packing and logistics standards."
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={galleryItems}
|
||||
containerClassName="max-w-7xl mx-auto px-8"
|
||||
/>
|
||||
</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."
|
||||
|
||||
Reference in New Issue
Block a user