🎉 We just launched our Bento Grid Maker! ✨ Create beautiful grid layouts with our interactive builder! 🚀

Vertical Testimonial Carousel

TESTIMONIALS

"This marketing solution transformed our business!"

- Jane Doe, CEO

Install dependencies

npm i framer-motion lucide-react shadcn-ui 

Add npx components

npx shadcn add card && npx shadcn add badge

Usage

import React from "react";
import TestimonialCarousel from "./testimonialCarousel";

export const testimonials = [
  {
    id: 1,
    text: "This marketing solution transformed our business!",
    author: "Jane Doe, CEO",
  },
  {
    id: 2,
    text: "Incredible results in just a few weeks!",
    author: "John Smith, Marketing Director", 
  },
  {
    id: 3,
    text: "The best decision we've made for our brand.",
    author: "Alice Johnson, Small Business Owner",
  },
];

const testimonals = () => {
  return (
    <div className="w-screen" >
      <TestimonialCarousel
        testimonials={testimonials}
        className=" mx-auto h-48"
        interval={3000}
      />
    </div>
  );
};

export default testimonals;