Vertical list of awards and accolades with icons, titles, organizations, and years. Ideal for press and credibility sections.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/about17?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Small label above the heading |
heading | string | – | Section heading |
description | string | – | Section intro text |
image | { src: string; alt: string } | – | Portrait photo in the left column |
awards | AwardItem[] | [] | Award rows in the right column, in the order supplied |
buttons | ButtonItem[] | [] | CTAs under the award list |
className | string | – | Extra classes for the outer <section> |
type AwardItem = { title: string; organization: string; year: string };
type ButtonItem = {
label: string;
href?: string;
variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};Award icon from lucide-react; AwardItem has no icon field, so awards cannot be given distinct icons per entry.divide-y rather than individual card borders, and year is right-aligned as plain text rather than a badge or pill.lg:grid-cols-[1fr_1fr] split, unlike sibling blocks (e.g. About13, About19) that weight one side heavier.aspect-[3/4] on mobile and lg:aspect-auto at desktop width, letting it stretch to match the award list's height through the grid's default row-stretch rather than holding a fixed ratio.about20
Wide team photo, member list with avatars, team stats grid, and a culture quote. A rich team showcase layout.
about13
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.
about3
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.
about1
Two-column about section with mission statement, company stats, and team member grid. Perfect for company pages and landing sections.
about62
About section with a header and a vertical timeline of milestones on a left rail, each marked by a year, title, and description.
about24
Company story with image, border-accented feature highlights, and stats row. Great for craft, heritage, and product-focused brands.