66 lines
2.5 KiB
TypeScript
66 lines
2.5 KiB
TypeScript
"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: "/services" },
|
|
{ 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: "/services" }] },
|
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
|
]}
|
|
bottomLeftText="© 2026 Sir James Delivery Company."
|
|
bottomRightText="Safe. Swift. Secure."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |