Compare commits

...

4 Commits

Author SHA1 Message Date
ba20865b74 Update src/app/page.tsx 2026-05-21 12:10:45 +00:00
0a74ed218e Add src/app/how-it-works/page.tsx 2026-05-21 12:10:45 +00:00
952ea76849 Update src/app/contact/page.tsx 2026-05-21 12:10:45 +00:00
763d84fa0a Merge version_3 into main
Merge version_3 into main
2026-05-21 12:07:18 +00:00
3 changed files with 68 additions and 19 deletions

View File

@@ -25,7 +25,7 @@ export default function ContactPage() {
<NavbarStyleApple
navItems={[
{ name: "Services", id: "/#freight" },
{ name: "How It Works", id: "/#blueprint" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Shipment Specs", id: "/#specs" },
{ name: "Contact", id: "/contact" },
]}

View File

@@ -0,0 +1,66 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function HowItWorksPage() {
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: "/#freight" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Shipment Specs", id: "/#specs" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sir James Delivery"
/>
</div>
<div id="blueprint" data-section="blueprint">
<MetricSplitMediaAbout
useInvertedBackground={false}
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: "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"
imageAlt="Aerial view of a bridge over the creek"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/#freight" }] },
{ 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

@@ -29,7 +29,7 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{ name: "Services", id: "#freight" },
{ name: "How It Works", id: "#blueprint" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Shipment Specs", id: "#specs" },
{ name: "Contact", id: "/contact" },
]}
@@ -90,23 +90,6 @@ export default function LandingPage() {
/>
</div>
<div id="blueprint" data-section="blueprint">
<MetricSplitMediaAbout
useInvertedBackground={false}
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: "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"
imageAlt="Aerial view of a bridge over the creek"
/>
</div>
<div id="why" data-section="why">
<FaqSplitMedia
textboxLayout="split"