Staaarter

Founder Endorsement

A single prominent endorsement, styled larger and more editorial than a compact quote card: a bigger quote mark, a longer multi-sentence quote, and a large avatar with name and title. Meant for a founder, CEO, or other named executive whose credibility carries the section on its own.

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/founder-endorsement.json

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

Usage

The file also exports testimonial15Demo, 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 { Testimonial15, testimonial15Demo } from "@/components/blocks/testimonials/testimonial15";

export default function Page() {
  return <Testimonial15 {...testimonial15Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringundefinedSmall label above the quote mark, e.g. "Founder story".
quoteReactNodenoneThe endorsement quote. Accepts JSX so a phrase within it can be highlighted.
founderFoundernoneName, title, and optional avatar of the person quoted.
classNamestringnoneExtra classes for the outer section element.

Types

type Founder = {
  name: string;
  title: string;
  avatar?: { src: string; alt: string };
};

Behavior notes

  • Fully static/decorative: this is a Server Component with no event handlers or client state.
  • The avatar is rendered larger (size-16 to size-20) than the compact-card blocks in this category to match the editorial framing described in the brief.
  • Avatar renders a real photo when founder.avatar.src is provided and falls back to initials via initialsFromName otherwise.