Explore the usage of Testimonial components to showcase user feedback and ratings in your applications.
The SmallCardTestimonials
component displays small avatar cards with ratings for testimonials.
1 import SmallCardTestimonials from '@/shared/component/Testimonial/SmallCardTestimonials';
2
3 <SmallCardTestimonials
4 avatars={[
5 { src: '/path/to/avatar1.jpg', alt: 'Avatar 1' },
6 { src: '/path/to/avatar2.jpg', alt: 'Avatar 2' },
7 { src: '/path/to/avatar3.jpg', alt: 'Avatar 3' },
8 ]}
9 activeStars={4}
10 />