Components
Stacked testimonial cards that layer with depth and reveal on scroll with staggered motion.
Loading preview...
import { DepthTestimonials } from "@/components/ui/depth-testimonials";
export default function DepthTestimonialsDemo() {
return (
<div className="flex min-h-[280px] w-full items-center justify-center bg-background p-10">
<div className="w-full max-w-md">
<DepthTestimonials
quotes={[
"This completely changed how our team ships features.",
"The best developer experience I've had in years.",
"Beautiful, fast, and incredibly easy to integrate.",
]}
/>
</div>
</div>
);
}