Testimonials Carousel
The Testimonials Carousel
component showcases client’s testimonials in a carousel, featuring their positive experiences with the product, enhancing credibility and user trust.
UI Preview




Usage
To use the TestimonialsCarousel
component, import it and provide it with the necessary carouselTestimonials
. Here is a basic example:
import React from "react";import { TestimonialsCarousel } from "@app-launch-kit/components/custom/testimonials/TestimonialsCarousel";import carouselTestimonials from "@app-launch-kit/utils/constants/carouselTestimonials";
export const TestimonialsCarouselBasic = () => { return <TestimonialsCarousel testimonials={carouselTestimonials} />;};