Switchable Capability LedgerPRO

Capability section with a row of pill filters that swap the list below: each entry becomes a ruled three-column row holding the title, an explanation and the typical duration pinned right.

Feature246: Switchable Capability Ledger

Capability section with a row of pill filters that swap the list below. Each entry becomes a ruled three-column row holding the title, the explanation and the typical duration pinned to the right edge, so a long service list stays readable without an accordion.

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

Base UI flavor

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

This installs the block to components/beste/block/feature246.tsx plus the badge7 component it uses for the eyebrow.

Quick start

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

tsx
import { Feature246, feature246Demo } from "@/components/beste/block/feature246";

export default function Page() {
  return <Feature246 {...feature246Demo} />;
}

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

tsx
import { Feature246 } from "@/components/beste/block/feature246";

export default function Page() {
  return (
    <Feature246
      badge={{ label: "Scope by track" }}
      heading="Pick the track, read the whole list."
      description="Switch between them to see what the work covers."
      labels={{ metaTitle: "Typical duration" }}
      groups={[
        {
          label: "Brand",
          items: [
            {
              title: "Identity system",
              description: "Marks, type, colour and the layout grid.",
              meta: "6 weeks",
            },
          ],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the left column
descriptionstringSupporting paragraph, right-aligned from md up
groupsCapabilityGroup[][]Each group becomes one filter pill and its own list
labelsFeature246Labels{}Fixed strings that are not content: the label above every duration
classNamestringExtra classes for the outer <section>
ts
type CapabilityGroup = {
  label: string;
  items: Capability[];
};

type Capability = {
  title: string;
  description: string;
  meta: string;
};

type Feature246Labels = {
  metaTitle?: string;
};

Behavior notes

More Feature blocks

View all Feature
PRO

feature257

Capability Selector

An interactive feature where a hairline list of four capabilities swaps the image tile beside it, each one floating a different live asset with its own supporting paragraph.

PRO

feature224

Capability Checklist Split

Two-column split with an eyebrow, big heading, description, and CTA on the left and a checklist of capabilities with rounded check seals on the right.

PRO

feature254

Photographic Year Ledger

Timeline where every ruled row lines up a year, a photograph from that moment and the explanation of what forced the change, headed by a pill CTA on the heading line and stacking to a readable block on mobile.

FREE

feature5

Compact Two-Column Capabilities

Left-aligned headline followed by a compact two-column grid of capability rows. Each row leads with a Lucide icon.

PRO

feature155

Feature Comparison Table

Simple 3-column comparison table with feature names and check/cross icons. Essential for plan comparison, feature tier table, or pricing comparison.

PRO

feature53

Accordion Feature Checklist

Expandable accordion sections with category headers and checkmark-style feature lists in a two-column grid. Perfect for organized feature overviews and pricing page inclusions.