Compare commits

..

26 Commits

Author SHA1 Message Date
fed6e6bba1 Update src/app/gallery/page.tsx 2026-05-23 09:00:28 +00:00
147b115324 Merge version_14 into main
Merge version_14 into main
2026-05-23 08:59:19 +00:00
400b9f9f56 Update src/app/gallery/page.tsx 2026-05-23 08:59:16 +00:00
35314daeff Merge version_13 into main
Merge version_13 into main
2026-05-21 22:07:02 +00:00
74f800d109 Update src/app/gallery/page.tsx 2026-05-21 22:06:59 +00:00
42cdf0de61 Merge version_12 into main
Merge version_12 into main
2026-05-21 21:52:14 +00:00
44bccb7a4e Update src/app/page.tsx 2026-05-21 21:52:11 +00:00
e4183136e0 Update src/app/how-it-works/page.tsx 2026-05-21 21:52:11 +00:00
ddd3ec65ea Merge version_12 into main
Merge version_12 into main
2026-05-21 21:51:50 +00:00
d4676b248a Update src/app/the-sir-james-transit-guarantee/page.tsx 2026-05-21 21:51:47 +00:00
34d2d8e2d3 Update src/app/services/page.tsx 2026-05-21 21:51:46 +00:00
5f80adce4b Update src/app/page.tsx 2026-05-21 21:51:46 +00:00
c6068ae58e Update src/app/how-it-works/page.tsx 2026-05-21 21:51:45 +00:00
a41598b2ee Add src/app/gallery/page.tsx 2026-05-21 21:51:45 +00:00
f3a188417c Update src/app/contact/page.tsx 2026-05-21 21:51:44 +00:00
268b33eacb Merge version_11 into main
Merge version_11 into main
2026-05-21 15:00:18 +00:00
0793aba6f2 Update src/app/page.tsx 2026-05-21 15:00:12 +00:00
e1a2d45339 Merge version_11 into main
Merge version_11 into main
2026-05-21 14:53:34 +00:00
5bd5e6f326 Update src/app/page.tsx 2026-05-21 14:53:31 +00:00
ec134d0805 Merge version_11 into main
Merge version_11 into main
2026-05-21 14:48:10 +00:00
6693999314 Update src/app/page.tsx 2026-05-21 14:48:07 +00:00
d3e6c287bd Merge version_11 into main
Merge version_11 into main
2026-05-21 14:47:41 +00:00
d50f62f0fa Update src/app/page.tsx 2026-05-21 14:47:38 +00:00
dd5764b64e Merge version_10 into main
Merge version_10 into main
2026-05-21 14:45:46 +00:00
4df369d9b4 Update src/app/how-it-works/page.tsx 2026-05-21 14:45:43 +00:00
90160c4f9f Merge version_9 into main
Merge version_9 into main
2026-05-21 14:43:13 +00:00
6 changed files with 97 additions and 8 deletions

View File

@@ -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" },
];

70
src/app/gallery/page.tsx Normal file
View File

@@ -0,0 +1,70 @@
"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 FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
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" },
];
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">
<FeatureCardTwentyFour
animationType="slide-up"
textboxLayout="split-actions"
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" }
]}
/>
</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>
);
}

View File

@@ -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,15 +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;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: "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>

View File

@@ -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"

View File

@@ -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" },
];

View File

@@ -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" },
];