Team Portrait Grid

A team section with an eyebrow over a hairline rule, a two-column heading, and a grid of portrait cards each with a name and role.

PRO

About68: Team Portrait Grid

Team section with a mono-style eyebrow badge above a hairline rule, a two-column header (heading left, description right on desktop), and a grid of portrait cards each showing a name and role underneath a full-bleed photo.

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/about68?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/about68.tsx, the badge23 component it uses for the eyebrow badge, and its dependencies.

Quick start

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

tsx
import { About68, about68Demo } from "@/components/beste/block/about68";

export default function AboutPage() {
  return <About68 {...about68Demo} />;
}

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

tsx
import { About68 } from "@/components/beste/block/about68";

export default function AboutPage() {
  return (
    <About68
      badge={{ label: "The team" }}
      heading="Built by people who have done the work themselves"
      description="A small team of operators and engineers who got tired of fighting their own tools."
      items={[
        {
          name: "Elena Rourke",
          role: "Co-founder, Product",
          avatar: {
            src: "https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=600&h=750&fit=crop",
            alt: "Portrait of Elena Rourke",
          },
        },
        {
          name: "Marcus Vale",
          role: "Co-founder, Engineering",
          avatar: {
            src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&h=750&fit=crop",
            alt: "Portrait of Marcus Vale",
          },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge above the hairline rule
headingstringSection heading; plain text, no <strong> handling
descriptionstringSupporting paragraph, shown right-aligned against the heading on desktop
itemsMember[][]Team members rendered in the portrait grid
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string };
type MemberImage = { src: string; alt: string };
type Member = { name: string; role: string; avatar: MemberImage };

Behavior notes

More About blocks

View all About
PRO

about60

Team Member Grid

Team section with an eyebrow, big heading, description and CTA above a responsive grid of people cards (portrait image, name, role).

PRO

about34

About Stats Grid

About section: eyebrow label, two-tone heading, two portraits beside a 2x2 stats grid.

PRO

about66

About with Stats Grid

Two-column about with a tall image on one side and an eyebrow, heading, description, and 2x2 stats grid on the other.

PRO

about7

Team Cards with Bios

Three-column grid of team member cards with avatars, roles, and short bios. Great for leadership and team pages.

PRO

about64

Principles Card Grid

Principles section with a header and a three-column grid of six bordered cards, each pairing a circular icon with a title and description.

PRO

about1

Team & Mission

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