Components
A minimal testimonial component featuring a centered quote with smooth fade/blur transitions when switching between testimonials.
npx shadcn@latest add https://21st.dev/r/jatin-yadav05/unique-testimonialLoading preview...
import { Testimonials } from "@/components/ui/unique-testimonial"
export default function Home() {
return (
<main className="min-h-screen flex items-center justify-center bg-background p-8">
<Testimonials />
</main>
)
}