Awards & Recognition

Vertical list of awards and accolades with icons, titles, organizations, and years. Ideal for press and credibility sections.

PRO

About17: Awards & Recognition

A portrait image sits next to a divided vertical list of awards, each row showing a fixed award icon, the award title and awarding organization, and the year flush to the right. A centered header and an optional CTA row bracket the two-column layout. Built for press and credibility sections that need to list accolades chronologically.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/about17?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/about17?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/about17.tsx and the badge and button shadcn/ui primitives it depends on.

Quick start

The installed file exports about17Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.

tsx
import { About17, about17Demo } from "@/components/beste/block/about17";

export default function Page() {
  return <About17 {...about17Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { About17 } from "@/components/beste/block/about17";

export default function Page() {
  return (
    <About17
      badge={{ label: "Recognition", variant: "secondary" }}
      heading="Awards and recognition"
      description="We are honored to be recognized for our commitment to design excellence."
      image={{ src: "https://images.unsplash.com/photo-1716024587589-e4a516918a25?w=800&h=1000&fit=crop", alt: "Our office" }}
      awards={[
        { title: "Best Developer Tool", organization: "Product Hunt Golden Kitty", year: "2025" },
        { title: "Design System of the Year", organization: "Awwwards", year: "2025" },
        { title: "Top 50 Open Source Projects", organization: "GitHub Accelerator", year: "2024" },
      ]}
      buttons={[{ label: "Read Press Kit", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringSection heading
descriptionstringSection intro text
image{ src: string; alt: string }Portrait photo in the left column
awardsAwardItem[][]Award rows in the right column, in the order supplied
buttonsButtonItem[][]CTAs under the award list
classNamestringExtra classes for the outer <section>
ts
type AwardItem = { title: string; organization: string; year: string };

type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};

Behavior notes

More About blocks

View all About
PRO

about20

Team Photo & List

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

PRO

about13

Company Profile

Asymmetric layout with company story and image on the left, and a vertical list of company details on the right. Great for press and investor pages.

PRO

about3

Timeline & Milestones

Two-column layout with company stats on the left and a vertical timeline of milestones on the right. Ideal for company history and growth stories.

PRO

about1

Team & Mission

Two-column about section with mission statement, company stats, and team member grid. Perfect for company pages and landing sections.

PRO

about62

Milestone Timeline

About section with a header and a vertical timeline of milestones on a left rail, each marked by a year, title, and description.

PRO

about24

Company Heritage & Features

Company story with image, border-accented feature highlights, and stats row. Great for craft, heritage, and product-focused brands.