Components
A responsive, accessible React testimonials section with looping horizontal scrollers, reusable TestimonialCard components, staggered entrance animations, hover-to-pause behavior, and a soft radial background for a polished, product-facing presentation.
npx @21st-dev/cli add dhileepkumargm/community-testimonialLoading preview...
import TestimonialsSection from "@/components/ui/community-testimonial";
export default function DemoOne() {
const testimonialsData = {
title: "Don't just take our word for it",
subtitle:
"See what our users are saying about how our app has transformed their daily routines and helped them build lasting habits.",
rows: [
{
id: "row1",
speed: "50s",
direction: "left",
testimonials: [
{
id: "t1",
quote:
"This app completely changed how I approach my goals. The visual feedback is incredibly motivating!",
authorName: "Sarah K.",
authorTitle: "Productivity Blogger",
avatarUrl: "https://placehold.co/100x100/E2E8F0/A0AEC0?text=SK",
},
{
id: "t2",
quote:
"I've tried countless habit trackers, and this is the first one that actually stuck. It's simple, beautiful, and effective.",
authorName: "Michael B.",
authorTitle: "Software Engineer",
avatarUrl: "https://placehold.co/100x100/E2E8F0/A0AEC0?text=MB",
},
{
id: "t3",
quote:
"The team accountability features are a game-changer. Our entire group is more motivated and connected.",
authorName: "Emily W.",
authorTitle: "Startup Founder",
avatarUrl: "https://placehold.co/100x100/E2E8F0/A0AEC0?text=EW",
},
],
},
{
id: "row2",
speed: "40s",
direction: "right",
testimonials: [
{
id: "t4",
quote:
"The design is just stunning. It feels less like a chore and more like a game. I'm hooked!",
authorName: "David L.",
authorTitle: "UX Designer",
avatarUrl: "https://placehold.co/100x100/E2E8F0/A0AEC0?text=DL",
},
{
id: "t5",
quote:
"Simple, no clutter, does exactly what it promises. The reminders are gentle but effective.",
authorName: "Jessica P.",
authorTitle: "Student",
avatarUrl: "https://placehold.co/100x100/E2E8F0/A0AEC0?text=JP",
},
{
id: "t6",
quote:
"Seeing my progress in the analytics section is the best part of my week. It shows my work is paying off.",
authorName: "Alex C.",
authorTitle: "Data Analyst",
avatarUrl: "https://placehold.co/100x100/E2E8F0/A0AEC0?text=AC",
},
],
},
{
id: "row3",
speed: "60s",
direction: "left",
testimonials: [
{
id: "t7",
quote:
"I love that my data is private. In a world where everything is tracked, this feels safe and personal.",
authorName: "Kenji T.",
authorTitle: "Privacy Advocate",
avatarUrl: "https://placehold.co/100x100/E2E8F0/A0AEC0?text=KT",
},
{
id: "t8",
quote:
"Finally, a habit app that isn't bloated with features I don't need. It's focused and powerful.",
authorName: "Maria G.",
authorTitle: "Writer",
avatarUrl: "https://placehold.co/100x100/E2E8F0/A0AEC0?text=MG",
},
{
id: "t9",
quote:
"The community support is surprisingly wholesome. It's a great place for accountability.",
authorName: "Chris R.",
authorTitle: "Fitness Coach",
avatarUrl: "https://placehold.co/100x100/E2E8F0/A0AEC0?text=CR",
},
],
},
],
};
return (
<div
className="app-root bg-radial min-h-screen flex items-center justify-center py-20 px-4"
aria-label="Testimonials showcase"
>
<TestimonialsSection data={testimonialsData} />
</div>
);
}