import { TestimonialMarquee } from "@/components/ui/testimonial-marquee"
const items = [
{
name: "Sarah Chen",
username: "sarahchen",
text: "This library has completely transformed how we build our UI. The animations are so smooth!",
avatar: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=150&h=150&fit=crop&crop=faces",
},
// ... other items
]
export function TestimonialMarqueeDemo() {
return (
<div className="relative w-full overflow-hidden rounded-xl border bg-background/50">
<TestimonialMarquee items={items} />
</div>
)
}