Testimonial Avatars


A small testimonial that showcases pictures of your users along with star ratings. Use it on your landing page.

Testimonial Avatars



import TestimonialAvatars from "@/components/TestimonialAvatars";
 
...
 
<TestimonialAvatars />

You can customize the avatars and text used in @/config/content.ts:

export const testimonials: Testimonials = {
  ...
  avatars: {
    // The text below the stars
    text: '800+ happy customers',
    // Array of image URLs
    images: [
      'avatars/1.png',
      'avatars/2.png',
      'avatars/3.png',
      'avatars/4.png',
      'avatars/5.png',
    ],
  },
  ...
};

Last Updated: March 5