Staaarter

Team Photo & List

Wide team photo, member list with avatars, team stats grid, and a culture quote. A rich team showcase layout.

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 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/team-photo-list.json

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

Usage

The file also exports about20Demo, 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 { About20, about20Demo } from "@/components/blocks/about/about20";

export default function Page() {
  return <About20 {...about20Demo} />;
}

Props

PropTypeDefaultDescription
headingstringnoneSection heading above the team photo.
descriptionstringundefinedSection intro text.
photoMediaSlotImageundefinedWide team photo; falls back to a gradient placeholder when omitted.
membersTeamMember[]noneTeam member list rendered as name/role rows with avatars.
statsStatItem[]noneStat row below the member list.
quote{ text: string; person: TeamMember }undefinedOptional culture quote at the bottom, centered.
classNamestringnoneExtra classes for the outer section element.

Types

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

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

Behavior notes

  • members renders as a flat list of name/role rows in up to 3 columns, unlike About1's team grid which is fixed at 2 columns and unlike About10 which shows team only as a stacked avatar cluster with a headcount string.
  • The culture quote is optional and, when present, is centered below the stats row similar to About4's centered treatment, but here it follows a full member list and stats band instead of standing alone at the top of the section.
  • stats sits between the member list and the quote inside its own bordered band (border-y), giving this block three visually distinct zones versus About14's two-zone stats-then-story-card layout.