BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/shadcn-ui-blocks/testimonial-01

Testimonial 01

shadcn-ui-blocks-shadcnship/testimonial-01
FreeBlock

Scrolling testimonial section with two animated marquee rows of customer review cards. Use it as a social proof belt on landing pages to continuously surface customer validation without requiring any user interaction.

See it running

Open the demo on shadcn-ui-blocks

shadcnship.com/blocks/testimonial-01
Open
This registry sends X-Frame-Options, so its page cannot be embedded here. The link is the same page the frame would have shown.

Install it

npx shadcn@latest add https://shadcnship.com/r/testimonial-01.json

Source

src/registry/blocks/testimonial-01/testimonial.tsxshadcnship.com/r/testimonial-01.json
1import { cn } from "@/lib/utils";
2import { Marquee } from "@/components/ui/marquee";
3import { Card } from "@/components/ui/card";
4import { Avatar, AvatarFallback } from "@/components/ui/avatar";
5
6interface TestimonialItem {
7 name: string;
8 role: string;
9 content: string;
10 avatar?: string;
11}
12
13interface Testimonial01Props {
14 title?: string;
15 description?: string;
16 testimonials?: TestimonialItem[];
17 className?: string;
18}
19
20const testimonials: TestimonialItem[] = [
21 {
22 name: "Alex Chen",
23 role: "Frontend Developer",
24 content:
25 "These components saved me weeks of development time. Copy, paste, customize—it's that simple!",
26 },
27 {
28 name: "Sarah Johnson",
29 role: "UI/UX Designer",
30 content:
31 "The components are beautifully designed and fully customizable. Perfect for rapid prototyping and production.",
32 },
33 {
34 name: "Michael Rodriguez",
35 role: "Full-Stack Engineer",
36 content:
37 "TypeScript support and accessibility built-in? This is exactly what I need to ship faster without compromising quality.",
38 },
39 {
40 name: "Emily Watson",
41 role: "Product Manager",
42 content:
43 "Our team's velocity increased significantly. We're shipping features faster than ever with these reusable components.",
44 },
45 {
46 name: "David Kim",
47 role: "Senior Developer",
48 content:
49 "Zero dependencies, fully typed, and production-ready. This is how component libraries should be built.",
50 },
51 {
52 name: "Lisa Anderson",
53 role: "Tech Lead",
54 content:
55 "The best part? Everything is customizable with Tailwind. No fighting with CSS frameworks or complex overrides.",
56 },
57];
58
59const TestimonialCard = ({ name, role, content, avatar }: TestimonialItem) => {
60 const initials = name
61 .split(" ")
62 .map((n) => n[0])
63 .join("")
64 .toUpperCase();
65
66 return (
67 <Card className="w-80 gap-4 p-6">
68 <div className="flex items-center gap-2">
69 <Avatar className="size-10">
70 {avatar ? (
71 <img src={avatar} alt={name} className="size-full object-cover" />
72 ) : (
73 <AvatarFallback className="bg-primary font-medium text-primary-foreground">
74 {initials}
75 </AvatarFallback>
76 )}
77 </Avatar>
78 <div className="flex flex-col gap-0.5">
79 <p className="font-medium">{name}</p>
80 <p className="text-sm text-muted-foreground">{role}</p>
81 </div>
82 </div>
83// … truncated

What it pulls in

npm packages

  • lucide-react

Other registry items

  • card
  • avatar
  • https://magicui.design/r/marquee.json

Files it writes

  • src/registry/blocks/testimonial-01/testimonial.tsx

Facts

Registry
shadcn-ui-blocks
Type
registry:block
Access
Free
Files written
1
Licence
the repository states none
First indexed
2026-08-01
Last confirmed
today

Go to the source

Docs on shadcn-ui-blocks shadcnship.com arnaudvolp/shadcnship on GitHub Raw registry item This item as JSON

More from shadcn-ui-blocks

All 74 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Square Grid Backgroundbackground-01shadcn-ui-blocksBlocksFreeno deps
Dot Pattern Backgroundbackground-02shadcn-ui-blocksBlocksFreeno deps
Diagonal Stripes Backgroundbackground-03shadcn-ui-blocksBlocksFreeno deps
Vertical Lines Backgroundbackground-04shadcn-ui-blocksBlocksFreeno deps
Interactive Grid Backgroundbackground-05shadcn-ui-blocksBlocksFreeno deps
Banner 01banner-01shadcn-ui-blocksBlocksFree1 dep
Blog 01blog-01shadcn-ui-blocksBlocksFreeno deps
Changelog 01changelog-01shadcn-ui-blocksBlocksFreeno deps
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex