ComponentsTestimonial Avatar
A small testimonial showcase 5 pictures of your customers and a rating.
/components/Hero.tsx
1import TestimonialsAvatars from "./TestimonialsAvatars";
2
3const Hero = () => {
4 return (
5 <>
6 <section>
7 ...
8 <TestimonialsAvatars />
9 ...
10 </section>
11 </>
12 );
13};
14
15export default Hero;