Wide hero image with gradient overlay text, inline stats, and a stacked avatar strip of team members.
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.
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/about11?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Heading overlaid on the hero image, bottom-left |
description | string | – | Centered paragraph below the hero image |
image | { src: string; alt: string } | – | Full-bleed 21:9 hero image with a dark overlay |
team | TeamMember[] | [] | Members rendered as an overlapping avatar strip |
teamLabel | string | – | Caption above the avatar strip |
stats | StatItem[] | [] | Inline stat pairs next to the avatar strip |
buttons | ButtonItem[] | [] | CTA row at the bottom |
className | string | – | Extra classes for the outer <section> |
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";
};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.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.-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.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.about20
Wide team photo, member list with avatars, team stats grid, and a culture quote. A rich team showcase layout.
about29
Centered header with wide panoramic image, product cards with layered attributes, and sourcing grid.
about31
Dark-overlay hero image with heading, suite/room cards with temperature and capacity badges. For hotels and hospitality.
about5
Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.
about56
Large heading with dual CTAs and a rating card, a playable video with floating metric cards, and a labelled about block with large paragraphs.
about23
Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.