Staaarter

Story, Image & Team Row

Two-column about section: company story, stats, and a leadership quote on the left, a team photo with an avatar row on the right.

By Staaarter Team
About
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge, avatar, avatar-initials, media-slot dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/story-image-team-row.json

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

Usage

The file also exports about23Demo, 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 { About23, about23Demo } from "@/components/blocks/about/about23";

export default function Page() {
  return <About23 {...about23Demo} />;
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: BadgeVariant }noneOptional pill above the heading.
headingstringnoneSection heading.
storystringnoneCompany story paragraph in the left column.
statsStatItem[][]Stat tiles below the story, in a fixed 3-column grid.
quoteLeadershipQuotenoneLeadership quote rendered as a bordered blockquote under the stats.
photoMediaSlotImageundefinedTeam photo in the right column, falls back to a placeholder.
teamTeamMember[][]Avatar row below the photo.
classNamestringnoneExtra classes for the outer section element.

Types

type StatItem = { title: string; value: string };

type TeamMember = {
  name: string;
  role: string;
  avatar?: { src: string; alt: string };
};

type LeadershipQuote = { text: string; name: string; role: string };

Behavior notes

  • Unlike About1's team grid, the right column here holds a single photo with a small avatar row underneath, so it reads as "this is our office and these are the people in it" rather than a directory.
  • The quote is always rendered (it is required, not optional) as a border-l blockquote under the stats, distinct from About4 which centers its quote as the entire hero and from About15 which treats its signature as a letter sign-off rather than a pull quote.
  • stats renders in a fixed 3-column grid, narrower than About1's 2-column stat grid, since it shares the left column with both the story paragraph and the quote below it.