Compare commits
99 Commits
version_4
...
version_15
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 | |||
| 74b2cf09aa | |||
| 43117d0820 | |||
| c8182c7135 | |||
| 3b424cb3b1 | |||
| 9a289224ee | |||
| 8f1267be93 | |||
| ac92eb1df4 | |||
| d946b2feed | |||
| 1b3ef1185f | |||
| f51470a989 | |||
| b0a43b611a | |||
| f6035dd809 | |||
| 17eddd158a | |||
| 015ab3cfd0 | |||
| f741363145 | |||
| 3aa67c4202 | |||
| 65b5303e3d | |||
| 71cee75ba5 | |||
| 046c64b2b6 | |||
| d57eef0cc1 | |||
| ba2cecf015 | |||
| c244781820 | |||
| f532e2e9fb | |||
| fbf779adc6 | |||
| e6e1c8935d | |||
| c69672eee4 | |||
| e1f7beb4ab | |||
| 4a69c76c2a | |||
| d3c6c47461 | |||
| 27ad8fd4e4 | |||
| 7a1923ea7a | |||
| 67415f5061 | |||
| 0b3c505699 | |||
| 9f89af5887 | |||
| b13fb3a288 | |||
| 16f71adc70 | |||
| 06efdf6240 | |||
| 037d2e07af | |||
| 20a18aaf9b | |||
| 7b10fa8fde | |||
| dc1d56fd45 | |||
| c3cb052821 | |||
| fb4042d214 | |||
| 82b8e94547 | |||
| b6dcad2e96 | |||
| ab3f754ea6 | |||
| 6795566a7f | |||
| 7f6cefee21 | |||
| c6d94d0fdc | |||
| 69e7b830f2 | |||
| fe2161cb21 | |||
| 9bc1ff8c34 | |||
| 63d59e05a9 | |||
| 5513c3c6b9 | |||
| 1a1fb94e9a | |||
| dac6de2b2b | |||
| 2a4ee65bab | |||
| 57de3bfeef | |||
| 5c50ea9f77 | |||
| a5c5007f78 | |||
| 875b628217 | |||
| 4effadcb42 | |||
| 8f287d6f33 | |||
| 3ef48f3f55 | |||
| 2a72113fed | |||
| 30b8d732a4 | |||
| 35f5c7f484 | |||
| 244f500dc2 | |||
| a97d024ae0 | |||
| 669b3e53b0 | |||
| 8469625e3d |
@@ -2,11 +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 ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
|
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 (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="icon-arrow"
|
defaultButtonVariant="icon-arrow"
|
||||||
@@ -23,30 +31,24 @@ export default function ContactPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={navItems}
|
||||||
{ name: "Services", id: "/#freight" },
|
|
||||||
{ name: "How It Works", id: "/how-it-works" },
|
|
||||||
{ name: "Shipment Specs", id: "/#specs" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
]}
|
|
||||||
brandName="Sir James Delivery"
|
brandName="Sir James Delivery"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{ variant: "plain" }}
|
|
||||||
tag="Stay Connected"
|
|
||||||
title="Contact Us"
|
title="Contact Us"
|
||||||
description="whatsapp contact: +233241851752 | call now: +971526377145 | Email: narhjames@gmail.com"
|
description="whatsapp contact: +233241851752 | call now: +971526377145 | Email: narhjames@gmail.com"
|
||||||
|
inputs={[{ name: "name", type: "text", placeholder: "Full Name" }, { name: "email", type: "email", placeholder: "Email Address" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/#freight" }] },
|
{ 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: "#" }] },
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2026 Sir James Delivery Company."
|
bottomLeftText="© 2026 Sir James Delivery Company."
|
||||||
|
|||||||
70
src/app/gallery/page.tsx
Normal file
70
src/app/gallery/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -7,6 +7,14 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
|
|||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
|
||||||
export default function HowItWorksPage() {
|
export default function HowItWorksPage() {
|
||||||
|
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 (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="icon-arrow"
|
defaultButtonVariant="icon-arrow"
|
||||||
@@ -23,12 +31,7 @@ export default function HowItWorksPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={navItems}
|
||||||
{ name: "Services", id: "/#freight" },
|
|
||||||
{ name: "How It Works", id: "/how-it-works" },
|
|
||||||
{ name: "Shipment Specs", id: "/#specs" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
]}
|
|
||||||
brandName="Sir James Delivery"
|
brandName="Sir James Delivery"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -39,13 +42,13 @@ export default function HowItWorksPage() {
|
|||||||
title="Shipping From Dubai to Ghana in 2 Easy Steps"
|
title="Shipping From Dubai to Ghana in 2 Easy Steps"
|
||||||
description="Our streamlined process ensures maximum security and efficiency."
|
description="Our streamlined process ensures maximum security and efficiency."
|
||||||
metrics={[
|
metrics={[
|
||||||
{ value: "1", title: "Hub Delivery" },
|
{ 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: "Secure Transit" },
|
{ 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" },
|
{ value: "3", title: "Ghana Pickup" },
|
||||||
]}
|
]}
|
||||||
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>
|
||||||
@@ -53,7 +56,7 @@ export default function HowItWorksPage() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/#freight" }] },
|
{ 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: "#" }] },
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2026 Sir James Delivery Company."
|
bottomLeftText="© 2026 Sir James Delivery Company."
|
||||||
|
|||||||
@@ -2,15 +2,22 @@
|
|||||||
|
|
||||||
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 MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
|
||||||
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 = [
|
||||||
|
{ 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 (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="icon-arrow"
|
defaultButtonVariant="icon-arrow"
|
||||||
@@ -27,12 +34,7 @@ export default function LandingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={navItems}
|
||||||
{ name: "Services", id: "#freight" },
|
|
||||||
{ name: "How It Works", id: "/how-it-works" },
|
|
||||||
{ name: "Shipment Specs", id: "#specs" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
]}
|
|
||||||
brandName="Sir James Delivery"
|
brandName="Sir James Delivery"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -52,7 +54,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
tag="Daily Shipments • Fully Insured • 100% Customs Cleared"
|
tag="Daily Shipments • Fully Insured • 100% Customs Cleared"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Read Transit Guarantee", href: "#why" },
|
{ text: "Read Transit Guarantee", href: "/the-sir-james-transit-guarantee" },
|
||||||
{ text: "Contact", href: "/contact" },
|
{ text: "Contact", href: "/contact" },
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/technological-futuristic-holograms-logistics-means-transport_23-2151663056.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/technological-futuristic-holograms-logistics-means-transport_23-2151663056.jpg"
|
||||||
@@ -74,15 +76,31 @@ 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"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{ id: "luxury", title: "Luxury & Essentials", author: "Fragile items", description: "Luxury goods are packed in reinforced, climate-controlled security crates.", tags: ["Watch", "Perfume"], imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg" },
|
{ id: "luxury", title: "Luxury & Essentials", author: "Fragile items", description: "Luxury goods are packed in reinforced, climate-controlled security crates.", tags: ["Watch", "Perfume"], imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" },
|
||||||
{ id: "auto", title: "Automotive Shipping", author: "Vehicle safety", description: "Vehicles are shipped via specialized container loading with strapping.", tags: ["SUV", "Sedan"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg" },
|
{ id: "auto", title: "Automotive Shipping", author: "Vehicle safety", description: "Vehicles are shipped via specialized container loading with strapping.", tags: ["SUV", "Sedan"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=2" },
|
||||||
{ id: "heavy", title: "Heavy Machinery", author: "Industrial gear", description: "Heavy machinery is handled with industrial forklifts and steel ties.", tags: ["Gym Gear", "Tools"], imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg" },
|
{ id: "heavy", title: "Heavy Machinery", author: "Industrial gear", description: "Heavy machinery is handled with industrial forklifts and steel ties.", tags: ["Gym Gear", "Tools"], imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" },
|
||||||
{ id: "general", title: "General Cargo", author: "Commercial bulk", description: "Commercial stock utilizes streamlined bulk palletizing options.", tags: ["Wholesale", "Stock"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/tmp/hyper-realistic-picture-of-a-cargo-conta-1779315244636-c2b3304a.png" },
|
{ id: "general", title: "General Cargo", author: "Commercial bulk", description: "Commercial stock utilizes streamlined bulk palletizing options.", tags: ["Wholesale", "Stock"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/tmp/hyper-realistic-picture-of-a-cargo-conta-1779315244636-c2b3304a.png" },
|
||||||
]}
|
]}
|
||||||
title="We Ship the Spectrum."
|
title="We Ship the Spectrum."
|
||||||
@@ -110,7 +128,7 @@ export default function LandingPage() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "#freight" }] },
|
{ 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: "#" }] },
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2026 Sir James Delivery Company."
|
bottomLeftText="© 2026 Sir James Delivery Company."
|
||||||
|
|||||||
67
src/app/services/page.tsx
Normal file
67
src/app/services/page.tsx
Normal 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 FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||||
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
|
||||||
|
export default function ServicesPage() {
|
||||||
|
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="services" data-section="services">
|
||||||
|
<FeatureCardTwentyFour
|
||||||
|
title="Our Services"
|
||||||
|
description="Expert freight forwarding and secure logistics tailored to your needs from Dubai to Ghana."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="split"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ id: "s1", title: "Luxury Shipping", author: "Secure transit", description: "High-security transit for watches and premium goods.", tags: ["Luxury"], imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=1" },
|
||||||
|
{ id: "s2", title: "Auto Logistics", author: "Vehicle safety", description: "Specialized vehicle shipping with expert strapping.", tags: ["Vehicles"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=1" },
|
||||||
|
{ id: "s3", title: "Industrial Cargo", author: "Heavy machinery", description: "Heavy machinery and equipment handled with care.", tags: ["Industrial"], imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=1" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</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>
|
||||||
|
);
|
||||||
|
}
|
||||||
64
src/app/the-sir-james-transit-guarantee/page.tsx
Normal file
64
src/app/the-sir-james-transit-guarantee/page.tsx
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
"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 LegalSection from '@/components/legal/LegalSection';
|
||||||
|
|
||||||
|
export default function TransitGuaranteePage() {
|
||||||
|
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="legal" data-section="legal">
|
||||||
|
<LegalSection
|
||||||
|
layout="page"
|
||||||
|
title="The Sir James Transit Guarantee"
|
||||||
|
sections={[
|
||||||
|
{
|
||||||
|
heading: "Our Commitment", content: [{ type: "paragraph", text: "At Sir James Delivery Company, we eliminate the anxiety of international shipping. Every single consignment—whether it is an exclusive luxury timepiece, fragile perfumes, or multi-ton industrial gym machinery—is backed by our zero-damage, clear-pricing commitment. From the exact moment your goods are cataloged at our Dubai hub to the second they are safely received at our secure warehouse in Ghana, your cargo is fully insured, monitored under strict logistics surveillance, and processed with 100% customs clearance. If we receive it in Dubai, you will collect it in Ghana in pristine condition. No exceptions, no hidden fees, no delays." }]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user