Two Column Testimonial
The Two Column Testimonial component displays customer reviews side-by-side, highlighting user feedback, star ratings, and reviewer details to showcase client satisfaction effectively.
UI Preview


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