Staaarter

Logo And Quote Combo

Grid of company-attributed quotes, each paired with a bold text wordmark instead of a real logo image, a short quote, and a name/role caption. Good for a customer wall when you don't have (or don't want to ship) real brand logo assets.

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 dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/logo-and-quote-combo.json

Prefer 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

PropTypeDefaultDescription
eyebrowstringundefinedSmall label above the heading.
headingReactNodeundefinedSection heading.
descriptionstringundefinedSupporting text below the heading.
quotesQuoteItem[]noneGrid items, each with a company wordmark, quote, name, and role.
classNamestringnoneExtra 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.