"This marketing solution transformed our business!"
- Jane Doe, CEO
npm i framer-motion lucide-react shadcn-ui
npx shadcn add card && npx shadcn add badge
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;