Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/logo-and-quote-combo.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/testimonials/testimonial7.tsx instead.
Usage
The file also exports testimonial7Demo, 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 { Testimonial7, testimonial7Demo } from "@/components/blocks/testimonials/testimonial7"; export default function Page() { return <Testimonial7 {...testimonial7Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Small label above the heading. |
| heading | ReactNode | undefined | Section heading. |
| description | string | undefined | Supporting text below the heading. |
| quotes | QuoteItem[] | none | Grid items, each with a company wordmark, quote, name, and role. |
| className | string | none | Extra classes for the outer section element. |
Types
type QuoteItem = { company: string; quote: string; name: string; role: string; };
Behavior notes
- Fully static, server-rendered section with no interactivity.
- The "logo" is plain bold text (the company name), not an image, since no real brand logo assets are used anywhere in this repo's blocks.
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.
Video Testimonial Grid
Grid of video-style testimonial cards, each a 16:9 thumbnail with a play-button overlay and a caption.
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.