Skip to content

Commit 2b3fd63

Browse files
author
martinvibes
committed
update testimonials
1 parent 68f324f commit 2b3fd63

File tree

1 file changed

+53
-27
lines changed

1 file changed

+53
-27
lines changed

frontend/src/app/landing/components/TestimonialsSection.tsx

Lines changed: 53 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,52 @@ import { motion } from "framer-motion";
55

66
const testimonials = [
77
{
8-
name: "Paymesh User",
9-
handle: "@paymesh_defi",
10-
text: "Somewhere out there, someone’s working hard for a dream—and this community is quietly helping them get there.",
8+
tag: "Group Payments",
9+
quote:
10+
"We use Paymesh to pay our staff and saves us a lot of time and stress. ",
11+
name: "Victor A.",
12+
role: "co-founder of runescard",
13+
company: "Kaduna, Nigeria",
1114
},
1215
{
13-
name: "Paymesh User",
14-
handle: "@paymesh_defi",
15-
text: "The AgentNation Discord isn’t huge but is growing, little by little, through people who believe in possibilities. 🌍",
16+
tag: "Group Savings",
17+
quote:
18+
"My friend group started a travel fund on PayMesh. We've been contributing weekly and watching our vacation fund grow. The transparency keeps everyone accountable.",
19+
name: "Savage K.",
20+
role: "Marketing Lead",
21+
company: "Nigeria",
1622
},
1723
{
18-
name: "Paymesh User",
19-
handle: "@paymesh_defi",
20-
text: "Every contribution tells a story of support, of connection, of what’s possible when we build together.",
24+
tag: "Team Expenses",
25+
quote:
26+
"Managing team lunch money used to be a headache. Now we just have a PayMesh group wallet. Everyone contributes, I order, done. It's that simple.",
27+
name: "Ebube O.",
28+
role: "Founder of Fortichain",
29+
company: "Nigeria",
2130
},
2231
{
23-
name: "Paymesh User",
24-
handle: "@paymesh_defi",
25-
text: "Somewhere out there, someone’s working hard for a dream—and this community is quietly helping them get there.",
32+
tag: "Event Planning",
33+
quote:
34+
"Used Paymesh to pay some beta testers who helped us test the app. It was seamless and efficient.",
35+
name: "Onuora One.",
36+
role: "CEO of InheritX",
37+
company: "Ghana",
2638
},
2739
{
28-
name: "Paymesh User",
29-
handle: "@paymesh_defi",
30-
text: "The AgentNation Discord isn’t huge but is growing, little by little, through people who believe in possibilities. 🌍",
40+
tag: "Fundraising",
41+
quote:
42+
"We raised funds for the Buidl End of year party using Paymesh. It was super easy and we hit our target in less than 72 hours.",
43+
name: "Mr Dave.",
44+
role: "Founder of the Buidl",
45+
company: "Nigeria",
3146
},
3247
{
33-
name: "Paymesh User",
34-
handle: "@paymesh_defi",
35-
text: "Every contribution tells a story of support, of connection, of what’s possible when we build together.",
48+
tag: "Crowdfunding",
49+
quote:
50+
"Did some transactions with Paymesh and i have to give them their flowers.",
51+
name: "Blessing M.",
52+
role: "Beta Tester",
53+
company: "Switzerland",
3654
},
3755
];
3856

@@ -88,19 +106,27 @@ export default function TestimonialsSection() {
88106
{testimonials.map((t, i) => (
89107
<motion.div
90108
key={i}
91-
className="bg-[#0E0F19] border border-[#232542] p-6 rounded-xl hover:border-[#5B63D6] transition-colors"
109+
className="bg-[#0E0F19] border border-[#232542] p-5 rounded-xl hover:border-[#5B63D6] transition-colors flex flex-col items-start"
92110
variants={itemVariants}
93111
>
94-
<div className="flex items-center gap-3 mb-4">
95-
<div className="w-10 h-10 bg-[#5B63D6] rounded-full flex items-center justify-center font-bold text-white">
96-
P
97-
</div>
98-
<div>
99-
<div className="text-white font-bold text-sm">{t.name}</div>
100-
<div className="text-[#8398AD] text-xs">{t.handle}</div>
112+
<div className="inline-block bg-[#5B63D6]/20 border border-[#5B63D6]/30 px-3 py-1 rounded-full mb-4">
113+
<span className="text-xs font-bold text-[#5B63D6] uppercase tracking-wider">
114+
{t.tag}
115+
</span>
116+
</div>
117+
118+
<p className="text-[#E2E2E2] text-base leading-relaxed mb-4 flex-grow">
119+
&ldquo;{t.quote}&rdquo;
120+
</p>
121+
122+
<div className="mt-auto border-t border-[#232542] w-full pt-2">
123+
<div className="text-white font-bold text-base">{t.name}</div>
124+
<div className="text-[#8398AD] text-xs mt-1">
125+
<span className="font-medium text-[#5B63D6]">{t.role}</span>
126+
<span className="mx-1.5 text-[#232542]"></span>
127+
{t.company}
101128
</div>
102129
</div>
103-
<p className="text-[#E2E2E2] text-sm leading-relaxed">{t.text}</p>
104130
</motion.div>
105131
))}
106132
</motion.div>

0 commit comments

Comments
 (0)