Soft Panel Capacity ReportPRO

A feature contained in one soft panel: heading and paragraph beside an image tile floating a live breakdown chart, closing on a hairline row of four capacity figures.

Feature259: Soft Panel Capacity Report

A feature contained in one soft panel: heading and paragraph beside an image tile floating a live breakdown chart, closing on a hairline row of four capacity figures.

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

Base UI flavor

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

This installs the block to components/beste/block/feature259.tsx, the chart7 breakdown piece it floats on the tile (installed to components/beste/piece/chart7.tsx), and the badge23 component it uses for the eyebrow.

Quick start

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

tsx
import { Feature259, feature259Demo } from "@/components/beste/block/feature259";

export default function Page() {
  return <Feature259 {...feature259Demo} />;
}

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

tsx
import { Chart7 } from "@/components/beste/piece/chart7";
import { Feature259 } from "@/components/beste/block/feature259";

export default function Page() {
  return (
    <Feature259
      badge={{ label: "Where time goes" }}
      heading="Capacity you can argue with, because it is measured"
      description="Every booked, moved, and cancelled hour is counted as it happens, so the case for another clinician is a screenshot rather than a hunch."
      media={
        <Chart7
          title="Where the week went"
          caption="Booked hours by appointment type"
          items={[
            { label: "Consultations", percent: 42 },
            { label: "Follow-ups", percent: 28 },
          ]}
        />
      }
      image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
      metrics={[
        { value: "96", label: "clinical hours booked last week" },
        { value: "81%", label: "of licensed capacity in use" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow at the top of the panel, rendered through Badge23
headingstringSection heading inside the panel
descriptionstringSupporting paragraph, capped at max-w-md
mediaReactNodeLive asset on the tile, chart7 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
metricsPanelMetric[][]Figure and label pairs on the closing hairline row
classNamestringExtra classes for the outer section
ts
type PanelMetric = {
  value: string;
  label: string;
};

type TileImage = {
  src: string;
  alt: string;
};

Behavior notes

More Feature blocks

View all Feature
PRO

feature203

Feature with Stats Grid and Image

Two-column feature section with heading, description, and a 2x2 stats grid (icon card, value, label) on one side and a square image on the other. Image position is configurable.

PRO

feature241

Icon Capability Grid

A capability section with an eyebrow over a hairline rule, a two-column heading, and a responsive grid of icon-led features with tinted chips, titles, and descriptions.

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.

FREE

feature126

Impact Stats with Large Numbers

Responsive grid of large stat numbers with labels and descriptions. Perfect for impact metrics, company statistics, or scale indicators.

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

feature233

Compact two-column icon feature list

A header with a badge, heading, and description, followed by many compact items in a two-column grid — each a lucide icon in a rounded bg-muted tile beside a title and one-line description.