Recorded Companion BandPRO

A wide photographic band with a scrim, floating a live video card in the middle of it, over three hairline notes that state how the recordings are made and what ships with them.

Feature272: Recorded Companion Band

A wide photographic band with a scrim, floating a live video card in the middle of it, over three hairline notes that state how the recordings are made and what ships with them.

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

Base UI flavor

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

This installs the block to components/beste/block/feature272.tsx, the badge6 component used for the eyebrow, and the media25 piece that floats in the band (installed to components/beste/piece/media25.tsx).

Quick start

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

tsx
import { Feature272, feature272Demo } from "@/components/beste/block/feature272";

export default function WatchPage() {
  return <Feature272 {...feature272Demo} />;
}

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

tsx
import { Feature272 } from "@/components/beste/block/feature272";
import { Media25 } from "@/components/beste/piece/media25";

export default function WatchPage() {
  return (
    <Feature272
      eyebrow="Watch instead"
      heading="Every guide has a version you can watch"
      description="The same argument, recorded in one take, with the working file on screen."
      image={{ src: "/studio/desk.jpg", alt: "Desk lit for a screen recording" }}
      media={
        <Media25
          thumbnail={{ src: "/covers/estimate.jpg", alt: "An estimate on screen" }}
          title="Writing an estimate you can defend"
          meta="Guide, chapter three"
          duration="6:12"
        />
      }
      notes={[
        { title: "One take, no edit", description: "Mistakes stay in." },
        { title: "Written version first", description: "The essay is always published before the recording." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the hairline rule
headingstringSection heading under the rule
descriptionstringSupporting paragraph
imageBandImagePhotograph filling the band
mediaReactNodeLive asset floated in the band, media25 in the demo
notesNote[][]Three hairline notes under the band
classNamestringExtra classes for the outer section
ts
type BandImage = {
  src: string;
  alt: string;
};

type Note = {
  title: string;
  description: string;
};

Behavior notes

More Feature blocks

View all Feature
PRO

feature253

Wide Band With Field Facts

Cinematic image band carrying a pill label in its corner, followed by a ruled four-column row where each measured fact pairs an oversized figure with a sentence of testing context, with the outline pill CTA sitting on the heading line.

PRO

feature268

Full-Bleed Workspace Band

A feature that breaks its media out of the container into a full-bleed image band floating a live view switcher, framed by a two-column header above and three numbered captions below.

PRO

feature243

Compact Asset Cards

A feature with an eyebrow over a hairline rule, a two-column heading, and three bordered cards that each float a compact live micro-asset above a title and description.

PRO

feature190

Large Icon Cards with Dividers over Media

Full-width feature cards separated by dividers with large icons and descriptions over background media

PRO

feature265

Staircase Asset Trio

A feature whose three image tiles step down the page in a staircase on large screens, each floating a different live asset above a small kicker, title, and paragraph.

FREE

feature194

Three Cards With Asset Media

Three feature cards that swap an icon for a real micro-asset: a bar chart, a before/after stat, and a terminal prompt. Demonstrates how registry-pieces drop into block media slots.

Markdown version