Add src/app/messagerie/page.tsx

This commit is contained in:
2026-06-07 10:39:11 +00:00
parent cd1480ac67
commit 5e6ddc1a09

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 { MessageSquare, Star } from "lucide-react";
export default function MessageriePage() {
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="messaging-hero" data-section="messaging-hero">
<HeroBillboardScroll
title="Instant Messaging, Seamless Connections"
description="Communicate in real-time with your delivery team and customers. Get instant updates, share details, and ensure smooth coordination for every delivery."
background={{ variant: "sparkles-gradient" }}
buttons={[{ text: "Start Chatting", href: "#" }]}
tag="Connect Instantly"
tagIcon={MessageSquare}
imageSrc="http://img.b2bpic.net/free-photo/group-diverse-people-using-digital-devices-connection_53876-26759.jpg"
imageAlt="People chatting on mobile devices"
/>
</div>
<div id="messagerie-reviews" data-section="messagerie-reviews">
<TestimonialCardThirteen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{
id: "chat-1", name: "Alex P.", handle: "@AlexP_Dev", testimonial: "The messaging feature is a lifesaver! Real-time communication with drivers makes our operations so much smoother.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-holding-smartphone-indoors_23-2148785025.jpg", imageAlt: "Alex P. profile"
},
{
id: "chat-2", name: "Brenda T.", handle: "@BrendaT_Store", testimonial: "Being able to chat directly with customers about their orders has significantly improved our service quality.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/female-model-wearing-blue-suit_53876-136017.jpg", imageAlt: "Brenda T. profile"
},
{
id: "chat-3", name: "Carlos M.", handle: "@CarlosM_Client", testimonial: "Quick responses and clear communication. This messaging system sets RapidDeliver apart.", rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/young-man-with-dark-hair-beard-wears-jeans-shirt-gestures-looks-aside-thoughtfully_197531-15893.jpg", imageAlt: "Carlos M. profile"
}
]}
showRating={true}
title="User Reviews for Messagerie"
description="Hear what users say about our real-time communication tools."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}