Add src/app/success-stories/page.tsx

This commit is contained in:
2026-06-08 10:20:18 +00:00
parent 7720158b5f
commit db50eb2079

View File

@@ -0,0 +1,92 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Star } from 'lucide-react';
export default function SuccessStoriesPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="floatingGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "#home"},
{
name: "About", id: "#about"},
{
name: "Process", id: "#process"},
{
name: "Success Stories", id: "/success-stories"},
{
name: "Team", id: "#team"},
{
name: "FAQ", id: "#faq"},
{
name: "Apply Now", id: "/apply-now"},
{
name: "Contact", id: "#contact"},
]}
brandName="WUMA Match"
/>
</div>
<div id="success-stories" data-section="success-stories">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
title="Our Happy Couples: Real Stories of Lasting Love"
description="Discover how WUMA Match has helped numerous clients find their ideal partners and build meaningful relationships."
testimonials={[
{
id: "1", name: "Jessica & Mark", handle: "@lovefound_JM", testimonial: "After years of trying dating apps, WUMA Match truly understood what I was looking for. Their personalized approach led me to Mark, and we couldn't be happier!", imageSrc: "http://img.b2bpic.net/free-photo/young-couple-sitting-table-cafe_171337-19036.jpg", imageAlt: "Jessica and Mark smiling together", icon: Star
},
{
id: "2", name: "David & Sarah", handle: "@davidandsarah", testimonial: "The entire process was seamless and incredibly professional. WUMA Match introduced me to Sarah, and our connection was instant. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/young-man-kissing-woman-head_23-2147978608.jpg", imageAlt: "David and Sarah embracing", icon: Star
},
{
id: "3", name: "Emily & John", handle: "@emilyjohnlove", testimonial: "I was hesitant about matchmaking, but WUMA Match exceeded all expectations. They found John, who shares all my values and dreams. Thank you!", imageSrc: "http://img.b2bpic.net/free-photo/newlywed-couple-having-fun-outdoors_23-2149021175.jpg", imageAlt: "Emily and John laughing", icon: Star
},
{
id: "4", name: "Olivia & Daniel", handle: "@olivia_daniel", testimonial: "The matchmakers are truly gifted. Olivia and I connected on so many levels, and it's all thanks to WUMA Match's careful curation. A life-changing experience.", imageSrc: "http://img.b2bpic.net/free-photo/cute-young-couple-walking-countryside_23-2147744908.jpg", imageAlt: "Olivia and Daniel walking hand-in-hand", icon: Star
},
{
id: "5", name: "Sophia & Alex", handle: "@sophia_alex", testimonial: "WUMA Match provided incredible support and guidance. Alex is everything I could have hoped for in a partner. We're building a beautiful future together.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-protesting-outdoors_23-2150246612.jpg", imageAlt: "Sophia and Alex enjoying a sunset", icon: Star
}
]}
topMarqueeDirection="left"
speed={40}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoSrc="http://img.b2bpic.net/free-photo/notepad-with-inscription-4th-july-design-with-stars-red-surface_23-2148151321.jpg"
logoAlt="modern elegant WUMA Match logo"
logoText="WUMA Match"
leftLink={{
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service", href: "#"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}