Edge Label About

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

PRO

About36: Edge Label About

Asymmetric about section: an image bleeds past its grid track on the left with a vertical, rotated edge label running up its side, and an offset text column overlaps the image on large screens via negative margins and z-index, closing with an inline stats row.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About36, about36Demo } from "@/components/beste/block/about36";

export default function Page() {
  return <About36 {...about36Demo} />;
}

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

tsx
import { About36 } from "@/components/beste/block/about36";

export default function Page() {
  return (
    <About36
      label="The Studio"
      heading="We build brands that <strong>refuse to blend in.</strong>"
      description="Polaris is a creative studio working at the seam of strategy and craft."
      button={{ label: "Inside the Studio", href: "https://beste.co" }}
      image={{
        src: "https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=900&h=1200&fit=crop",
        alt: "Studio team reviewing brand work",
      }}
      edgeWord="ABOUT"
      stats={[
        { value: "12", label: "Years of practice" },
        { value: "180+", label: "Brands shaped" },
        { value: "9", label: "Design awards" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow label rendered inside the badge
headingstringRendered via dangerouslySetInnerHTML; <strong> spans render muted
descriptionstringParagraph below the heading
buttonActionLinkCTA below the description
imageImageItemSingle bleeding portrait image, not an array
edgeWordstringVertical rotated label along the image's edge; lg and up only
statsStatItem[][]Inline stat row at the bottom of the text column
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

about46

About Strip

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

PRO

about5

Image & Text Split

Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.

PRO

about13

Company Profile

Asymmetric layout with company story and image on the left, and a vertical list of company details on the right. Great for press and investor pages.

PRO

about66

About with Stats Grid

Two-column about with a tall image on one side and an eyebrow, heading, description, and 2x2 stats grid on the other.

PRO

about10

Bento Grid About

Asymmetric bento grid combining a mission card, team photo, stats, and stacked avatars. A modern, compact about section.

PRO

about39

Numeral About

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