Awards & Recognition
Vertical list of awards and accolades with icons, titles, organizations, and years. Ideal for press and credibility sections.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/awards-recognition.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about17.tsx instead.
Usage
The file also exports about17Demo, 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 { About17, about17Demo } from "@/components/blocks/about/about17"; export default function Page() { return <About17 {...about17Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| badge | { label: string; variant?: BadgeVariant } | none | Optional pill above the heading. |
| heading | string | none | Section heading. |
| description | string | undefined | Section intro text. |
| awards | AwardItem[] | none | List of awards rendered as a divided vertical list. |
| className | string | none | Extra classes for the outer section element. |
Types
type AwardItem = { icon: LucideIcon; title: string; organization: string; year: string; description?: string; };
Behavior notes
- Unlike About8's stat grid, this block is a single-column divided list (border-y with divide-y between rows) so it reads as a chronological or ranked list rather than a set of independent tiles.
- Each award's year renders right-aligned on the same line as the title, and the per-award description is optional; omitting it collapses that row to just the icon, title, organization, and year.
- The heading column shares the badge-plus-heading pattern from About1 and About22, but stays a narrow max-w-2xl single column rather than splitting into two columns like About22's Q&A 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.