Banner Split & Process Steps

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

PRO

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.

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

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.