Staaarter

Single Large Quote

A single, large centered pull-quote with a decorative quote-mark icon above it and an avatar/name/role attribution below. Good for a landing page section that wants to feature one flagship customer quote without any surrounding clutter.

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

npx shadcn add https://staaarter.com/r/single-large-quote.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/testimonials/testimonial1.tsx instead.

Usage

The file also exports testimonial1Demo, 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 { Testimonial1, testimonial1Demo } from "@/components/blocks/testimonials/testimonial1";

export default function Page() {
  return <Testimonial1 {...testimonial1Demo} />;
}

Props

PropTypeDefaultDescription
quotestringnoneThe pull-quote text.
namestringnoneAttributed person's name.
rolestringnoneAttributed person's role.
companystringundefinedAttributed person's company, appended after the role when set.
classNamestringnoneExtra classes for the outer section element.

Behavior notes

  • Fully static, server-rendered section with no interactivity.
  • The avatar always renders initials (no photo prop on this block); the quote-mark icon above the quote is purely decorative.