Hero Banner with Avatars

Modern office space

We are building the future of design infrastructure

Our platform empowers developers and designers to ship beautiful, accessible interfaces at record speed.

45+

Team Members

12

Countries

800+

Components

Meet the team behind the product

SCMJERDKAP
About this block

Hero Banner with AvatarsPRO

Wide hero image with gradient overlay text, inline stats, and a stacked avatar strip of team members.

About11: Hero Banner with Avatars

Wide hero-style about section: a full-bleed 21:9 image carries a dark overlay with the heading in white text pinned to its bottom edge, followed by centered description copy and a two-column row pairing inline stats with a stacked avatar strip of the team.

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.

Upgrade Now

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

Base UI flavor

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

This installs the block to components/beste/block/about11.tsx, along with the shadcn/ui badge, button, and avatar components it depends on.

Quick start

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

tsx
import { About11, about11Demo } from "@/components/beste/block/about11";

export default function AboutPage() {
  return <About11 {...about11Demo} />;
}

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

tsx
import { About11 } from "@/components/beste/block/about11";

export default function AboutPage() {
  return (
    <About11
      heading="We are building the future of design infrastructure"
      description="Our platform empowers developers and designers to ship interfaces at record speed."
      image={{ src: "https://images.unsplash.com/photo-1768180316485-2c7306ab38ff?w=1200&fit=crop", alt: "Modern office space" }}
      stats={[
        { title: "Team Members", value: "45+" },
        { title: "Countries", value: "12" },
      ]}
      teamLabel="Meet the team behind the product"
      team={[
        { name: "Sarah Chen" },
        { name: "Marcus Johnson" },
        { name: "Elena Rodriguez" },
      ]}
      buttons={[{ label: "Learn More", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringHeading overlaid on the hero image, bottom-left
descriptionstringCentered paragraph below the hero image
image{ src: string; alt: string }Full-bleed 21:9 hero image with a dark overlay
teamTeamMember[][]Members rendered as an overlapping avatar strip
teamLabelstringCaption above the avatar strip
statsStatItem[][]Inline stat pairs next to the avatar strip
buttonsButtonItem[][]CTA row at the bottom
classNamestringExtra classes for the outer <section>
ts
type TeamMember = {
  name: string;
  avatar?: { src: string; alt: string };
};

type StatItem = { title: string; value: string };

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

Behavior notes

  • Unlike the other About blocks, About11 has no badge prop or Badge usage in the component, even though badge is installed as a shadcn/ui dependency alongside it; the overlaid heading is the only header element.
  • The hero image sits behind a fixed bg-black/60 overlay with the heading in white text anchored to the bottom-left corner (absolute inset-x-0 bottom-0), so this block assumes a photographic image rather than a light or illustrated one.
  • Team avatars overlap with -space-x-3 and a border-2 border-background ring per avatar, forming a stacked strip rather than a grid. TeamMember here only carries name and avatar, unlike About4/About7 which also include a role field.
  • The stats-and-team row is a two-column grid only at md and up (md:grid-cols-2); below that, stats and the avatar strip stack vertically, and the avatar strip is only right-aligned from md onward (md:items-end).
  • teamLabel is optional and, when provided, sits directly above the avatar strip.

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

about29

Wide Banner & Product Cards

Centered header with wide panoramic image, product cards with layered attributes, and sourcing grid.

PRO

about31

Hero Overlay & Suite Cards

Dark-overlay hero image with heading, suite/room cards with temperature and capacity badges. For hotels and hospitality.

PRO

about5

Image & Text Split

Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.

PRO

about56

Showcase Hero With Video

Large heading with dual CTAs and a rating card, a playable video with floating metric cards, and a labelled about block with large paragraphs.

PRO

about23

Story, Image & Team Row

Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.