Add src/app/paiement/page.tsx

This commit is contained in:
2026-06-07 10:39:12 +00:00
parent 308bc1f379
commit 93f8228d88

83
src/app/paiement/page.tsx Normal file
View File

@@ -0,0 +1,83 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { CreditCard, Lock, Star } from "lucide-react";
export default function PaiementPage() {
const updatedNavItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Metrics", id: "#metrics" },
{ name: "Pricing", id: "#pricing" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Partners", id: "#partners" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" },
{ name: "Messagerie", id: "/messagerie" },
{ name: "Paiement", id: "/paiement" }
];
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="large"
background="none"
cardStyle="layered-gradient"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen navItems={updatedNavItems} brandName="RapidDeliver" />
</div>
<div id="payment-hero" data-section="payment-hero">
<HeroBillboardScroll
title="Secure Payments, Effortless Transactions"
description="Process payments with confidence. Our secure gateway ensures fast, reliable, and protected transactions for all your delivery services."
background={{ variant: "radial-gradient" }}
buttons={[{ text: "Make a Payment", href: "#" }]}
tag="Pay Securely"
tagIcon={CreditCard}
imageSrc="http://img.b2bpic.net/free-photo/hand-holding-smartphone-using-mobile-banking-app_53876-136423.jpg"
imageAlt="Secure online payment on a mobile phone"
/>
</div>
<div id="paiement-reviews" data-section="paiement-reviews">
<TestimonialCardThirteen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{
id: "pay-1", name: "Daniel F.", handle: "@DanielF_Ecom", testimonial: "The payment process is incredibly smooth and secure. Our customers appreciate the ease of transaction.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/top-view-man-working-with-laptop-documents_23-2148767355.jpg", imageAlt: "Daniel F. profile"
},
{
id: "pay-2", name: "Grace H.", handle: "@GraceH_Finance", testimonial: "RapidDeliver's payment gateway provides peace of mind with its robust security features. Highly recommended!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-tablet-at-cafe_23-2148671607.jpg", imageAlt: "Grace H. profile"
},
{
id: "pay-3", name: "Isabella K.", handle: "@IsabellaK_Biz", testimonial: "Fast and reliable payment processing. It's an essential part of our seamless delivery workflow.", rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-business-lady-having-conversation-while-writing-her-notepad-cafe_23-2148671569.jpg", imageAlt: "Isabella K. profile"
}
]}
showRating={true}
title="User Reviews for Paiement"
description="See what users say about our secure and efficient payment system."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}