Pill tabs for each audience swap a split panel holding a tall photograph beside a title, summary and ruled list of what that audience actually gets.
The same project explained to different rooms. Pill tabs switch the audience, and the panel below swaps its photograph, statement, summary and ruled list of outcomes to match.
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.
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/usecase49?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/usecase49?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/usecase49.tsx plus the badge7 eyebrow it uses.
The installed file exports usecase49Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { Usecase49, usecase49Demo } from "@/components/beste/block/usecase49";
export default function Page() {
return <Usecase49 {...usecase49Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Usecase49 } from "@/components/beste/block/usecase49";
export default function Page() {
return (
<Usecase49
badge={{ label: "Depends who is asking" }}
heading="The same project, explained to three different rooms."
description="Founders, marketing leads and the people who will maintain it want different answers."
tabs={[
{
label: "Founders",
title: "What it costs you and what it buys back",
summary: "One fixed price, one named lead and a schedule you can put in front of a board.",
src: "/audiences/founders.jpg",
alt: "Team working at a long shared table",
outcomes: [
{ title: "No open-ended hours", description: "Fixed scope and a written estimate." },
{ title: "One person answerable", description: "The lead who sat in the first call." },
],
},
{
label: "Marketing",
title: "Pages you can update without a designer",
summary: "Templates, components and written rules, handed over with a session.",
src: "/audiences/marketing.jpg",
alt: "Studio monitor showing a layout in progress",
outcomes: [{ title: "Every state drawn", description: "Empty and error states included." }],
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Section heading in the left header column |
description | string | – | Supporting paragraph in the right header column |
tabs | AudienceTab[] | [] | Audiences, first one selected on mount |
className | string | – | Extra classes for the outer <section> |
type AudienceTab = {
label: string;
title: string;
summary: string;
src: string;
alt: string;
outcomes: OutcomeRow[];
};
type OutcomeRow = {
title: string;
description: string;
};button elements carrying aria-pressed, with the selected one inverted to bg-foreground text-background and the rest bordered, so the state is announced as well as drawn.flex-wrap, so a long audience name such as "The team who keeps it" drops onto a second line at full size instead of compressing the others.border-t py-5, so a two-outcome audience and a three-outcome one both look deliberate.aspect-[4/3] on mobile becomes md:aspect-[4/5], so the panel keeps a portrait plate beside the copy on desktop and a landscape band on a phone.max-w-lg inside the panel, so the summaries share a measure and differences in length read as content rather than layout.usecase48
Three tall photographic bands stacked full width, each carrying an eyebrow, display title, explanation, one outcome figure and its own outline pill link over a tinted scrim; the three-column foot only forms from lg up so the sentence keeps its measure on a tablet.
usecase14
Segmented control style tabs with split layout showing image, description, and bullet point features. Perfect for comparing solution approaches or product capabilities.
usecase45
Three use cases as image and text rows, each numbered and carrying a story, two ruled outcome figures and its own outline pill link; pictures stay top-aligned and the side only alternates from lg, so a tablet keeps every image at the top left.
usecase1
Tab-based use case section with images, descriptions, and feature checklists that collapse to accordion on mobile. Perfect for showcasing how different teams or departments use your product.