Components
Loading preview...
Here is Testimonals Carousel component
npx shadcn@latest add https://21st.dev/r/karthikmudunuri/testimonals-carousel// This is a demo of a preview
"use client";
import React from "react";
import { Component } from "@/components/ui/testimonals-carousel";
const DemoOne = () => {
return (
<div className="flex w-full min-h-screen justify-center items-center p-4">
<Component />
</div>
);
};
export default DemoOne;