Team Member Grid
Team section with an eyebrow, big heading, description, and CTA buttons above a responsive grid of people cards, each a portrait photo, name, and role.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button, media-slot dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/team-member-grid.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about60.tsx instead.
Usage
The file also exports about60Demo, 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 { About60, about60Demo } from "@/components/blocks/about/about60"; export default function Page() { return <About60 {...about60Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Small label above the heading. |
| heading | string | none | Section heading. |
| description | string | undefined | Supporting copy under the heading. |
| buttons | ButtonItem[] | [] | CTA buttons under the header, above the grid. |
| team | TeamMember[] | none | Grid of team member cards. |
| className | string | none | Extra classes for the outer section element. |
Types
type TeamMember = { name: string; role: string; photo?: { src: string; alt: string }; }; type ButtonItem = { label: string; href?: string; variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive"; };
Behavior notes
- Each team card uses MediaSlot in a tall 3:4 portrait frame rather than a circular Avatar, unlike About1 and About7 which show team members as round avatar images, so a member without a photo falls back to MediaSlot's gradient placeholder instead of initials.
- The header (eyebrow, heading, description, buttons) is capped at max-w-2xl and left-aligned above a full-width grid below it, the same header/grid split as About7, but About7 has no CTA buttons in its header.
- The grid steps up to four columns at the lg breakpoint, wider than About1's and About7's two- and three-column team grids, since portrait cards are narrower than avatar-and-text rows.
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.