Compare commits

..

20 Commits

Author SHA1 Message Date
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
6 changed files with 92 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ export default function ContactPage() {
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" }, { name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]; ];

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

@@ -0,0 +1,67 @@
"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"
useInvertedBackground={false}
title="Cargo Packing Gallery"
description="See how we professionally secure your items for the journey from Dubai to Ghana."
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: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" }, { name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]; ];
@@ -47,7 +48,7 @@ export default function HowItWorksPage() {
]} ]}
mediaAnimation="slide-up" mediaAnimation="slide-up"
metricsAnimation="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" imageAlt="Aerial view of a bridge over the creek"
/> />
</div> </div>

View File

@@ -2,18 +2,19 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; 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 FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; 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() { export default function LandingPage() {
const navItems = [ const navItems = [
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" }, { name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]; ];
@@ -75,6 +76,22 @@ export default function LandingPage() {
/> />
</div> </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"> <div id="freight" data-section="freight">
<FeatureCardTwentyFour <FeatureCardTwentyFour
animationType="slide-up" animationType="slide-up"

View File

@@ -11,6 +11,7 @@ export default function ServicesPage() {
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" }, { name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]; ];

View File

@@ -11,6 +11,7 @@ export default function TransitGuaranteePage() {
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" }, { name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" }, { name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]; ];