ComponentsRating
Showing your app rating. Looks good above a headline.
/components/Hero.tsx
1import TestimonialRating from "./TestimonialRating";
2
3const Hero = () => {
4 return (
5 <>
6 <section>
7 ...
8 <TestimonialRating />
9 ...
10 </section>
11 </>
12 );
13};
14
15export default Hero;