Compare commits

...

29 Commits

Author SHA1 Message Date
16f71adc70 Update src/app/the-sir-james-transit-guarantee/page.tsx 2026-05-21 12:48:58 +00:00
06efdf6240 Update src/app/services/page.tsx 2026-05-21 12:48:57 +00:00
037d2e07af Update src/app/page.tsx 2026-05-21 12:48:56 +00:00
20a18aaf9b Update src/app/how-it-works/page.tsx 2026-05-21 12:48:56 +00:00
7b10fa8fde Update src/app/contact/page.tsx 2026-05-21 12:48:55 +00:00
c3cb052821 Update src/app/the-sir-james-transit-guarantee/page.tsx 2026-05-21 12:42:05 +00:00
c6d94d0fdc Merge version_6 into main
Merge version_6 into main
2026-05-21 12:31:06 +00:00
69e7b830f2 Update src/app/the-sir-james-transit-guarantee/page.tsx 2026-05-21 12:31:03 +00:00
fe2161cb21 Update src/app/services/page.tsx 2026-05-21 12:31:02 +00:00
9bc1ff8c34 Update src/app/page.tsx 2026-05-21 12:31:02 +00:00
63d59e05a9 Update src/app/how-it-works/page.tsx 2026-05-21 12:31:02 +00:00
5513c3c6b9 Update src/app/contact/page.tsx 2026-05-21 12:31:01 +00:00
1a1fb94e9a Merge version_6 into main
Merge version_6 into main
2026-05-21 12:30:22 +00:00
dac6de2b2b Update src/app/the-sir-james-transit-guarantee/page.tsx 2026-05-21 12:30:19 +00:00
2a4ee65bab Merge version_6 into main
Merge version_6 into main
2026-05-21 12:21:50 +00:00
57de3bfeef Add src/app/the-sir-james-transit-guarantee/page.tsx 2026-05-21 12:21:47 +00:00
5c50ea9f77 Update src/app/services/page.tsx 2026-05-21 12:21:46 +00:00
a5c5007f78 Update src/app/page.tsx 2026-05-21 12:21:46 +00:00
875b628217 Update src/app/how-it-works/page.tsx 2026-05-21 12:21:46 +00:00
4effadcb42 Update src/app/contact/page.tsx 2026-05-21 12:21:45 +00:00
8f287d6f33 Merge version_5 into main
Merge version_5 into main
2026-05-21 12:13:09 +00:00
3ef48f3f55 Update src/app/services/page.tsx 2026-05-21 12:13:03 +00:00
2a72113fed Update src/app/page.tsx 2026-05-21 12:13:02 +00:00
30b8d732a4 Merge version_5 into main
Merge version_5 into main
2026-05-21 12:12:41 +00:00
35f5c7f484 Add src/app/services/page.tsx 2026-05-21 12:12:38 +00:00
244f500dc2 Update src/app/page.tsx 2026-05-21 12:12:38 +00:00
a97d024ae0 Update src/app/how-it-works/page.tsx 2026-05-21 12:12:37 +00:00
669b3e53b0 Update src/app/contact/page.tsx 2026-05-21 12:12:37 +00:00
8469625e3d Merge version_4 into main
Merge version_4 into main
2026-05-21 12:10:48 +00:00
5 changed files with 139 additions and 14 deletions

View File

@@ -24,9 +24,9 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Services", id: "/#freight" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Shipment Specs", id: "/#specs" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sir James Delivery"
@@ -46,7 +46,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterSimple
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: "#" }] },
]}
bottomLeftText="© 2026 Sir James Delivery Company."

View File

@@ -24,9 +24,9 @@ export default function HowItWorksPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Services", id: "/#freight" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Shipment Specs", id: "/#specs" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sir James Delivery"
@@ -53,7 +53,7 @@ export default function HowItWorksPage() {
<div id="footer" data-section="footer">
<FooterSimple
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: "#" }] },
]}
bottomLeftText="© 2026 Sir James Delivery Company."

View File

@@ -7,7 +7,6 @@ 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 MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() {
@@ -28,9 +27,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Services", id: "#freight" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Shipment Specs", id: "#specs" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sir James Delivery"
@@ -52,7 +51,7 @@ export default function LandingPage() {
]}
tag="Daily Shipments • Fully Insured • 100% Customs Cleared"
buttons={[
{ text: "Read Transit Guarantee", href: "#why" },
{ text: "Read Transit Guarantee", href: "/the-sir-james-transit-guarantee" },
{ text: "Contact", href: "/contact" },
]}
imageSrc="http://img.b2bpic.net/free-photo/technological-futuristic-holograms-logistics-means-transport_23-2151663056.jpg"
@@ -80,9 +79,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
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: "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: "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: "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?_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?_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" },
]}
title="We Ship the Spectrum."
@@ -110,7 +109,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
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: "#" }] },
]}
bottomLeftText="© 2026 Sir James Delivery Company."

65
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,65 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function ServicesPage() {
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={[
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sir James Delivery"
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwentyNine
title="Our Services"
description="Expert freight forwarding and secure logistics tailored to your needs from Dubai to Ghana."
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{ title: "Luxury Shipping", description: "High-security transit for watches and premium goods.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=1", titleImageSrc: "", buttonText: "Learn More" },
{ title: "Auto Logistics", description: "Specialized vehicle shipping with expert strapping.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=1", titleImageSrc: "", buttonText: "Learn More" },
{ title: "Industrial Cargo", description: "Heavy machinery and equipment handled with care.", imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=1", titleImageSrc: "", buttonText: "Learn More" }
]}
/>
</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

@@ -0,0 +1,61 @@
"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() {
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={[
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Contact", id: "/contact" },
]}
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>
);
}