Wide Band With Field FactsPRO

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.

Feature253: Wide Band With Field Facts

A wide cinematic photograph with a pill label pinned into its corner, opened by a heading with the CTA beside it and closed by four ruled facts, each one a title, a figure and a sentence of context.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Feature253, feature253Demo } from "@/components/beste/block/feature253";

export default function Page() {
  return <Feature253 {...feature253Demo} />;
}

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

tsx
import { Feature253 } from "@/components/beste/block/feature253";

export default function Page() {
  return (
    <Feature253
      badge={{ label: "Field test" }}
      heading="Built for the wall, not for the presentation."
      description="We install the first pieces ourselves and photograph them in the light they will live in."
      image={{ src: "/case/entrance.jpg", alt: "Glass and steel building front" }}
      labels={{ imageLabel: "Kestrel Group, west entrance" }}
      facts={[
        {
          title: "Legibility distance",
          value: "18 m",
          description: "Tested at dusk and under the building's own lighting.",
        },
        {
          title: "Install time per panel",
          value: "24 min",
          description: "Two people, one drill, no special tooling required.",
        },
      ]}
      button={{ label: "See the specification", href: "/work/kestrel" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the header row
descriptionstringSupporting paragraph under the header
imageBandImageWide photograph between the copy and the facts
factsBandFact[][]Ruled facts under the image
buttonActionButtonOutline Button12 in the header, opposite the heading
labelsFeature253Labels{}Fixed strings that are not content: the pill label on the image
classNamestringExtra classes for the outer <section>
ts
type BandImage = {
  src: string;
  alt: string;
};

type BandFact = {
  title: string;
  value: string;
  description: string;
};

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

type Feature253Labels = {
  imageLabel?: string;
};

Behavior notes

More Feature blocks

View all Feature
PRO

feature218

Why-Choose Media Proof

Centered eyebrow and heading above a wide image card carrying a corner label and a glass overlay band that pairs a testimonial with a headline stat, followed by a three-up row of icon reasons.

PRO

feature200

Feature with Two-Column Checklist and Image

Two-column feature section with badge, heading, description, a 2-column checklist of icon items (defaults to check icon), and CTA on one side, with a square image on the other. Image position is configurable.

PRO

feature217

Impact Grid With Media

Centered eyebrow, heading and dark CTA above a split block: a tall labeled image on the left and a two-by-two grid of icon feature cards on the right.

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

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.

PRO

feature247

Photo Callout Markers

Wide photograph carrying numbered markers placed by percentage coordinates, paired with a ruled four-column list where the selected entry repeats the marker as a filled seal, darkens its rule and brings its text forward.