Video Testimonial Grid
A grid of video-style testimonial cards: each is a 16:9 thumbnail with a centered circular play-button overlay and a caption (name plus a short quote snippet) below. The video player itself is not wired up, this block only presents the thumbnail grid a video testimonials section would use.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its media-slot dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/video-testimonial-grid.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/testimonials/testimonial4.tsx instead.
Usage
The file also exports testimonial4Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { Testimonial4, testimonial4Demo } from "@/components/blocks/testimonials/testimonial4"; export default function Page() { return <Testimonial4 {...testimonial4Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | ReactNode | undefined | Section heading. |
| description | string | undefined | Supporting text below the heading. |
| items | VideoTestimonialItem[] | none | Grid cards, each with a name, a short caption/title, and an optional thumbnail image. |
| className | string | none | Extra classes for the outer section element. |
Types
type VideoTestimonialItem = { name: string; title: string; image?: MediaSlotImage; };
Behavior notes
- Fully static, server-rendered section with no interactivity.
- The play-button overlay is purely decorative and not a real button or link, no video player is wired up.
- Each item's `image` is left unset in the demo so MediaSlot's built-in placeholder (a muted gradient with an image icon) renders instead of a real photo, matching this category's vector-placeholder convention.
More Testimonials Blocks
View all →Single Large Quote
One large centered pull-quote with a decorative quote mark and a simple avatar attribution below.
Three Column Grid
Responsive grid of quote cards, each with a star rating, avatar, name, role, and quote text.
Quote Carousel
Interactive one-at-a-time quote carousel with prev/next arrows and clickable dot indicators.
Masonry Wall
"Wall of love" style masonry layout of many short quote cards using CSS columns, not a JS library.
Quote With Stats Sidebar
Split layout pairing a large quote and attribution with a sidebar of 2-3 result stats.
Logo And Quote Combo
Grid of company-attributed quotes, each paired with a bold text wordmark instead of a real logo image.