Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ba20865b74 | |||
| 0a74ed218e | |||
| 952ea76849 | |||
| 763d84fa0a |
@@ -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" },
|
||||
]}
|
||||
|
||||
66
src/app/how-it-works/page.tsx
Normal file
66
src/app/how-it-works/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user