Bento Grid About
Asymmetric bento grid combining a mission card, team photo, stats, and stacked avatars. A modern, compact about section.
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/bento-grid-about.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about10.tsx instead.
Usage
The file also exports about10Demo, 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 { About10, about10Demo } from "@/components/blocks/about/about10"; export default function Page() { return <About10 {...about10Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | none | Heading in the wide mission tile. |
| mission | string | none | Mission paragraph in the wide mission tile. |
| photo | { src: string; alt: string } | undefined | Photo tile; renders a placeholder when omitted. |
| stats | StatItem[] | none | One tile per stat; each renders as its own bento cell. |
| team | TeamMember[] | none | Stacked avatars in the bottom tile, with a headcount caption. |
| className | string | none | Extra classes for the outer section element. |
Types
type StatItem = { title: string; value: string }; type TeamMember = { name: string; avatar?: { src: string; alt: string }; };
Behavior notes
- This is the only About block whose grid cell count depends on the stats array length: every stat gets its own bento tile, so passing more stats reflows the grid rather than overflowing a fixed number of slots.
- The photo tile spans two rows on large screens (row-span-2 lg:aspect-auto) to anchor the bento layout; on small screens it falls back to a square aspect ratio instead.
- team avatars are shown overlapping (negative margin) with a caption reading "{count} people building this, full time", where count is team.length computed automatically, not a separate prop.
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.