Inset Card About

A cinematic wide image with an overlapping inset content card and a stat ribbon.

PRO

About54: Inset Card About

About section built around a full-bleed cinematic image with a content card overlapping its bottom edge, offset to the left rather than centered, followed by a full-width stat ribbon below.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About54, about54Demo } from "@/components/beste/block/about54";

export default function Page() {
  return <About54 {...about54Demo} />;
}

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

tsx
import { About54 } from "@/components/beste/block/about54";

export default function Page() {
  return (
    <About54
      label="Inside The Studio"
      heading="We build brands that<br /><strong>refuse to disappear.</strong>"
      description="Polaris is a creative studio of directors, designers, and strategists."
      button={{ label: "Step into the studio", href: "/studio" }}
      image={{
        src: "https://images.unsplash.com/photo-1547931751-eb4f7f5c049b?w=2000&fit=crop",
        alt: "Studio floor with the team mid-production",
      }}
      stats={[
        { value: "14yrs", label: "Crafting brands that last." },
        { value: "320+", label: "Films shipped worldwide." },
        { value: "41", label: "Makers under one roof." },
        { value: "9", label: "Awards on the shelf." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered in a Badge6
headingstringStatement heading inside the inset card; supports inline HTML (<br />, <strong>)
descriptionstringSupporting paragraph inside the inset card
buttonActionLinkSingle CTA rendered as a Button1 with an arrow icon
imageImageItemCinematic hero image behind the inset card
statsStatItem[][]Stat ribbon entries below the card
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };
type ImageItem = { src: string; alt: string };
type StatItem = { value: string; label: 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

about11

Hero Banner with Avatars

Wide hero image with gradient overlay text, inline stats, and a stacked avatar strip of team members.

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

about46

About Strip

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

PRO

about56

Showcase Hero With Video

Large heading with dual CTAs and a rating card, a playable video with floating metric cards, and a labelled about block with large paragraphs.

PRO

about31

Hero Overlay & Suite Cards

Dark-overlay hero image with heading, suite/room cards with temperature and capacity badges. For hotels and hospitality.