About Strip

An about intro followed by a horizontally scrollable strip mixing image, stat, quote and values cards.

PRO

About46: About Strip

An about intro (heading and lead paragraph in an asymmetric two-column header) followed by a full-bleed, horizontally scrollable strip that mixes four different card types: photo cards with a caption overlay, stat cards, dark quote cards, and a checklist-style values card. Prev/next buttons drive the scroll programmatically alongside native drag/swipe.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/about46.tsx, the badge6 and button1 components it uses for the eyebrow label and CTA button, and its dependencies.

Quick start

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

tsx
import { About46, about46Demo } from "@/components/beste/block/about46";

export default function AboutPage() {
  return <About46 {...about46Demo} />;
}

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

tsx
import { About46 } from "@/components/beste/block/about46";

export default function AboutPage() {
  return (
    <About46
      label="Inside the studio"
      heading="A team built sideways, moving as <strong>one continuous line</strong>."
      lead="We work as a single horizontal team, not a relay of departments."
      button={{ label: "Read the brief", href: "https://beste.co" }}
      cards={[
        {
          variant: "image",
          src: "https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=900&h=1200&fit=crop",
          alt: "Team mid-critique around a table",
          caption: "Every project starts at one table.",
        },
        { variant: "stat", value: "11 days", label: "Median time to first prototype." },
        {
          variant: "quote",
          quote: "They handed us a working product, not a deck about one.",
          attribution: "Priya Nair, VP Product",
        },
        {
          variant: "values",
          title: "What we hold the line on",
          items: ["Ship the real thing.", "One owner per decision.", "Prototypes over promises."],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow badge text above the heading
headingstringIntro statement; supports inline <strong> for primary-colored highlights
leadstringSupporting paragraph next to the heading
buttonActionLinkCTA rendered as a Button1 with an arrow icon
cardsStripCard[][]Ordered list of cards rendered in the horizontal strip
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };

type StripCard =
  | { variant: "image"; src: string; alt: string; caption: string }
  | { variant: "stat"; value: string; label: string }
  | { variant: "quote"; quote: string; attribution: string }
  | { variant: "values"; title: string; items: string[] };

Behavior notes

More About blocks

View all About
PRO

about42

Framed Studio Card

About composed inside a bordered studio card with header marks, portrait and a stats strip.

PRO

about39

Numeral About

About anchored by an oversized numeral with a paragraph and a horizontal image strip.

PRO

about36

Edge Label About

Asymmetric about with a bleeding image, vertical edge label, offset copy and an inline stats row.

PRO

about44

Marquee Accent About

Layered about over a faint scrolling studio-word marquee with offset images and stats.

PRO

about58

About Statement Card

About section on a soft muted card with a monospace parenthetical eyebrow, a bold studio wordmark, a large centered statement, a logos strip, and a four-column stats band.

PRO

about25

Animated Stats & Value Cards

Side-by-side intro with animated number counters on scroll, expanding accent bars, and hover-lift value cards. For impact-driven companies.