Staaarter

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.

By Staaarter Team
Testimonials
Docs
Live preview

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.json

Prefer 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

PropTypeDefaultDescription
headingReactNodeundefinedSection heading.
descriptionstringundefinedSupporting text below the heading.
itemsVideoTestimonialItem[]noneGrid cards, each with a name, a short caption/title, and an optional thumbnail image.
classNamestringnoneExtra 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.