Banner Split & Process Steps

Hand-drawn map on desk
Bespoke Cartography

Maps that deserve a frame

A custom cartography studio producing hand-illustrated maps for publishers, estates, wineries, national parks, and anyone who believes a place deserves to be drawn, not just photographed.

01

Survey & Research

Satellite data, historical records, and on-site photography to build a comprehensive reference package.

02

Pencil Draft

Hand-drawn pencil draft at full scale for client review. Revisions included at this stage.

03

Ink & Color

Final illustration in archival ink with watercolor washes. Scanned at 1200 DPI for reproduction.

About this block

Banner Split & Process StepsPRO

Panoramic image with split header showing numbered process steps alongside. For studios and creative agencies.

About30: Banner Split & Process Steps

A wide panoramic banner sits above a two-column split: a badge, heading, and description on the left, and a compact list of numbered process steps on the right, each with a large faded number. Built for studios and creative agencies that want to pair their story with a short "how we work" outline in the same section.

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

Base UI flavor

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

This installs the block to components/beste/block/about30.tsx and the badge shadcn/ui primitive it depends on.

Quick start

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

tsx
import { About30, about30Demo } from "@/components/beste/block/about30";

export default function AboutPage() {
  return <About30 {...about30Demo} />;
}

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

tsx
import { About30 } from "@/components/beste/block/about30";

export default function AboutPage() {
  return (
    <About30
      badge={{ label: "Bespoke Cartography", variant: "secondary" }}
      heading="Maps that deserve a frame"
      description="Hand-illustrated maps for publishers, estates, wineries, and national parks."
      image={{
        src: "https://images.unsplash.com/photo-1452421822248-d4c2b47f0c81?w=1200&h=500&fit=crop",
        alt: "Hand-drawn map on desk",
      }}
      process={[
        { step: "01", title: "Survey & Research", description: "Satellite data and on-site photography." },
        { step: "02", title: "Pencil Draft", description: "Hand-drawn draft at full scale for review." },
        { step: "03", title: "Ink & Color", description: "Final illustration in archival ink." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Eyebrow badge above the heading
headingstringLeft-column section heading
descriptionstringLeft-column lead paragraph
image{ src: string; alt: string }Wide panoramic banner above the split
processProcessStep[][]Numbered step list in the right column
classNamestringExtra classes for the outer <section>
ts
type ProcessStep = { step: string; title: string; description: string };

Behavior notes

  • This block has no buttons prop at all, unlike most other About blocks in the set; there is no built-in way to add a CTA without editing the source.
  • step is a free-form string, not an index, so the demo's "01", "02", "03" are literal label text; nothing auto-numbers the list, and non-sequential or non-numeric labels (e.g. roman numerals) work just as well.
  • The step number is rendered large and heavily faded (text-muted-foreground/30), functioning as background typography rather than a prominent counter.
  • The split is a fixed lg:grid-cols-[2fr_1fr] layout, so the copy column is twice as wide as the process column on large screens; below lg both stack into a single column.
  • The banner image always renders at a fixed aspect-[21/9], the same wide ratio used across the set's other banner-style About blocks.

More About blocks

View all About
PRO

about27

Split Intro & Animated Timeline

Left intro with image, right vertical timeline with staggered scroll-reveal animation. Numbered steps with sliding content. For startup journeys.

PRO

about63

Studio Story Split

Image-led about split with a tall portrait, an offset statement heading, supporting copy, mono studio facts, and a seal CTA.

PRO

about12

Process Steps

Four-column numbered process cards showing how your company works. Each step has a large number, title, and description.

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

about29

Wide Banner & Product Cards

Centered header with wide panoramic image, product cards with layered attributes, and sourcing grid.

PRO

about21

Checklist & Image Split

Two-column layout with checklist highlights on the left, featured image and testimonial quote on the right, plus a full-width stats row.