Deliverables Ledger

(What you get)

Everything that leaves the studio, listed before we start.

A commission is not a mood board and an invoice. This is the full inventory of files, systems and documents that land in your drive at the end of each track.

Identity

The mark and the rules that keep it honest.

  • Primary and reduced wordmark
  • Type system with licensing sorted
  • Color and contrast reference
  • Usage guide, twelve pages, no filler

Editorial

The voice, written down so anyone can use it.

  • Message hierarchy for every page
  • Tone guide with real examples
  • Launch copy, revised twice
  • Naming set for products and plans

Interface

The build-ready end of the system.

  • Responsive page designs
  • Component library in Figma
  • Motion and interaction notes
  • Handover session with your engineers

Tracks can be booked separately, though identity work usually has to land first.

Request the full scope
About this block

Deliverables LedgerPRO

Scope section listing what a project actually ships: three ruled columns, each with a track title, a one-line summary and a dotted-rule inventory of deliverables, closed by a note and a pill CTA.

Feature245: Deliverables Ledger

Scope section that answers the only question clients actually ask: what arrives at the end. Three ruled columns each carry a track title, a one-line summary and a dotted-rule inventory of deliverables, with a caveat note and a pill CTA closing the block.

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

Base UI flavor

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

This installs the block to components/beste/block/feature245.tsx plus the badge7 eyebrow and button12 pill button it uses.

Quick start

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

tsx
import { Feature245, feature245Demo } from "@/components/beste/block/feature245";

export default function Page() {
  return <Feature245 {...feature245Demo} />;
}

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

tsx
import { Feature245 } from "@/components/beste/block/feature245";

export default function Page() {
  return (
    <Feature245
      badge={{ label: "What you get" }}
      heading="Everything that leaves the studio, listed before we start."
      description="The full inventory of files, systems and documents."
      groups={[
        {
          title: "Identity",
          summary: "The mark and the rules that keep it honest.",
          items: ["Primary and reduced wordmark", "Type system with licensing sorted"],
        },
      ]}
      button={{ label: "Request the full scope", href: "/scope" }}
      labels={{ note: "Tracks can be booked separately." }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the left column
descriptionstringSupporting paragraph, right-aligned from md up
groupsDeliverableGroup[][]One ruled column per track
buttonActionButtonPill CTA on the closing rule, rendered as Button12
labelsFeature245Labels{}Fixed strings that are not content: the closing note
classNamestringExtra classes for the outer <section>
ts
type DeliverableGroup = {
  title: string;
  summary: string;
  items: string[];
};

type ActionButton = {
  label: string;
  href: string;
};

type Feature245Labels = {
  note?: string;
};

Behavior notes

  • Deliverables are plain strings, not objects, because the list is an inventory rather than a feature grid: nothing here needs an icon, a link or a description of its own.
  • Each item sits on a border-t border-dotted rule, which reads as a lighter tier than the solid rule closing the column and keeps a twelve-item list from turning into a boxed table.
  • Columns are independent, so groups with different item counts simply end at different heights instead of forcing an equalised card.
  • The closing note and CTA share one border-t row with justify-between, and wrap onto separate lines below sm.
  • Group titles render as h3 under the section h2, so a page with several of these blocks keeps a valid heading outline.

More Feature blocks

View all Feature
PRO

feature251

Deliverable Cards With Media

Three soft cards, each floating its own media piece over a dotted field before an eyebrow, a title, an explanation and a ruled delivery note, laid out as a plain grid with no horizontal scrolling.

PRO

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, an explanation and the typical duration pinned right.

PRO

feature292

Install Ask Ship Steps

Three numbered columns under rules that draw in from the left as they scroll into view: the first carries a rounded pill that copies the install command on click, the next two show a sample prompt and a resulting file path in muted mono panels. Serif headline settles in word by word, a sliding-marker pill sits at the right end of the header.

PRO

feature294

Six Gains Ruled Grid

A header with a serif headline that settles in word by word and, at its right end, a rounded pill that copies the install command on click; below it a ruled two by three grid of thin icons, serif titles and short paragraphs that settle in one after another as they scroll into view.

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

feature219

Indexed Services List

Eyebrow and heading with a CTA on one row, above stacked service cards that each line up an index and growth stat, a thumbnail image, and a title with description and tag chips.