Components
Loading preview...
An animated empty state component for testimonial sections.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/empty-testimonial"use client";
import EmptyTestimonial from "@/components/ui/empty-testimonial";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<EmptyTestimonial />
</div>
);
}