Hero Banner with Avatars

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

PRO

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.

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

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.