Compare commits
58 Commits
version_8
...
version_17
| Author | SHA1 | Date | |
|---|---|---|---|
| 2469ba103e | |||
| b14437ee99 | |||
| 17aecb495b | |||
| 08e84d5395 | |||
| fed6e6bba1 | |||
| 147b115324 | |||
| 400b9f9f56 | |||
| 35314daeff | |||
| 74f800d109 | |||
| 42cdf0de61 | |||
| 44bccb7a4e | |||
| e4183136e0 | |||
| ddd3ec65ea | |||
| d4676b248a | |||
| 34d2d8e2d3 | |||
| 5f80adce4b | |||
| c6068ae58e | |||
| a41598b2ee | |||
| f3a188417c | |||
| 268b33eacb | |||
| 0793aba6f2 | |||
| e1a2d45339 | |||
| 5bd5e6f326 | |||
| ec134d0805 | |||
| 6693999314 | |||
| d3e6c287bd | |||
| d50f62f0fa | |||
| dd5764b64e | |||
| 4df369d9b4 | |||
| 90160c4f9f | |||
| 6629b542c9 | |||
| 5ce65a0b87 | |||
| 43117d0820 | |||
| c8182c7135 | |||
| 3b424cb3b1 | |||
| 9a289224ee | |||
| 8f1267be93 | |||
| f6035dd809 | |||
| 17eddd158a | |||
| 015ab3cfd0 | |||
| f741363145 | |||
| 3aa67c4202 | |||
| 65b5303e3d | |||
| 71cee75ba5 | |||
| 046c64b2b6 | |||
| d57eef0cc1 | |||
| ba2cecf015 | |||
| c244781820 | |||
| f532e2e9fb | |||
| fbf779adc6 | |||
| e6e1c8935d | |||
| 4a69c76c2a | |||
| 27ad8fd4e4 | |||
| 16f71adc70 | |||
| 06efdf6240 | |||
| 037d2e07af | |||
| 20a18aaf9b | |||
| 7b10fa8fde |
@@ -11,6 +11,7 @@ export default function ContactPage() {
|
||||
{ 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" },
|
||||
];
|
||||
|
||||
|
||||
71
src/app/gallery/page.tsx
Normal file
71
src/app/gallery/page.tsx
Normal file
@@ -0,0 +1,71 @@
|
||||
"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 ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
|
||||
export default function GalleryPage() {
|
||||
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 = [
|
||||
{ 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"
|
||||
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">
|
||||
<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}
|
||||
products={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: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2026 Sir James Delivery Company."
|
||||
bottomRightText="Safe. Swift. Secure."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -11,6 +11,7 @@ export default function HowItWorksPage() {
|
||||
{ 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" },
|
||||
];
|
||||
|
||||
@@ -41,13 +42,13 @@ export default function HowItWorksPage() {
|
||||
title="Shipping From Dubai to Ghana in 2 Easy Steps"
|
||||
description="Our streamlined process ensures maximum security and efficiency."
|
||||
metrics={[
|
||||
{ value: "1", title: "Hub Delivery" },
|
||||
{ value: "2", title: "Secure Transit" },
|
||||
{ value: "1", title: "Hub Delivery;You secure the goods; we take complete ownership. Drop your items off at our centralized Dubai hub, or have your UAE suppliers ship directly to our receiving depot. The moment your cargo arrives, our specialized team conducts an immediate premium inventory check, logs your items, and packages them into high-security, reinforced transit containers tailored to their specific category (from luxury timepieces to heavy gym equipment)." },
|
||||
{ value: "2", title: "Premium Transit & Secure Pickup;We handle the border logistics; you collect in Ghana. Your cargo is fast-tracked through air or sea transit under constant tracking and logistics surveillance. Our dedicated customs clearing desk manages 100% of the complex port paperwork and border clearance internally. Your goods travel straight to our private, secure warehouse facility in Ghana, fully processed and ready for a smooth, hassle-free pickup." },
|
||||
{ value: "3", title: "Ghana Pickup" },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aerial-view-bridge-creek-powerlines-with-cars-road_181624-24539.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aerial-view-bridge-creek-powerlines-with-cars-road_181624-24539.jpg?_wi=2"
|
||||
imageAlt="Aerial view of a bridge over the creek"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -2,18 +2,19 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||
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';
|
||||
|
||||
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" },
|
||||
];
|
||||
|
||||
@@ -75,6 +76,22 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="process" data-section="process">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={false}
|
||||
title=" Shipping from Dubai to Ghana in 2 simple steps"
|
||||
description="Our streamlined process ensures maximum security and efficiency for all your cargo."
|
||||
metrics={[
|
||||
{ value: "1", title: "Hub Collection,Deliver your goods or have your suppliers ship directly to our Dubai receiving hub. We immediately inspect, inventory, and securely pack your cargo into specialized transit containers." },
|
||||
{ value: "2", title: "Secure Transit,We handle the global transit, tracking, and 100% of the customs clearance paperwork. Your pristine cargo goes straight to our private Ghana warehouse, ready for hassle-free collection." },
|
||||
{ value: "3", title: "Ghana Arrival" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aerial-view-bridge-creek-powerlines-with-cars-road_181624-24539.jpg?_wi=1"
|
||||
imageAlt="Streamlined shipping process overview"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="freight" data-section="freight">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
|
||||
@@ -11,6 +11,7 @@ export default function ServicesPage() {
|
||||
{ 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" },
|
||||
];
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ export default function TransitGuaranteePage() {
|
||||
{ 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" },
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user