Team Photo & List
Wide team photo, member list with avatars, team stats grid, and a culture quote. A rich team showcase layout.
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.jsonPrefer 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
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | none | Section heading above the team photo. |
| description | string | undefined | Section intro text. |
| photo | MediaSlotImage | undefined | Wide team photo; falls back to a gradient placeholder when omitted. |
| members | TeamMember[] | none | Team member list rendered as name/role rows with avatars. |
| stats | StatItem[] | none | Stat row below the member list. |
| quote | { text: string; person: TeamMember } | undefined | Optional culture quote at the bottom, centered. |
| className | string | none | Extra 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.
More About Blocks
View all →team-mission
Team & Mission
Two-column about section with mission statement, company stats, and team member grid.
values-with-team-photo
Values with Team Photo
Full-width photo with a three-column values grid below.
timeline-milestones
Timeline & Milestones
Company stats on the left and a vertical timeline of milestones on the right.
founder-quote-team
Founder Quote & Team
Founder blockquote with avatar, followed by a horizontal team member row.
image-text-split
Image & Text Split
Tall image on the left, company story, inline stats, and CTAs on the right.
numbered-principles
Numbered Principles
Heading on the left and numbered company principles on the right.