Components
Loading preview...
An 8-bit styled testimonials block with two columns of retro pixel-font cards, each holding a quote, an author name, and a role badge. Renders a responsive grid of testimonial cards. Fully prop-driven via title, description, and testimonials.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-social-proof2"use client";
import SocialProof2 from "@/components/ui/8bit-social-proof2";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<SocialProof2 />
</div>
);
}