A minimal testimonial component featuring a centered quote with smooth fade/blur transitions when switching between testimonials.
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> ) }