Panoramic image with split header showing numbered process steps alongside. For studios and creative agencies.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/about30?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Eyebrow badge above the heading |
heading | string | – | Left-column section heading |
description | string | – | Left-column lead paragraph |
image | { src: string; alt: string } | – | Wide panoramic banner above the split |
process | ProcessStep[] | [] | Numbered step list in the right column |
className | string | – | Extra classes for the outer <section> |
type ProcessStep = { step: string; title: string; description: string };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.text-muted-foreground/30), functioning as background typography rather than a prominent counter.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.aspect-[21/9], the same wide ratio used across the set's other banner-style About blocks.about27
Left intro with image, right vertical timeline with staggered scroll-reveal animation. Numbered steps with sliding content. For startup journeys.
about63
Image-led about split with a tall portrait, an offset statement heading, supporting copy, mono studio facts, and a seal CTA.
about12
Four-column numbered process cards showing how your company works. Each step has a large number, title, and description.
about5
Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.
about29
Centered header with wide panoramic image, product cards with layered attributes, and sourcing grid.
about21
Two-column layout with checklist highlights on the left, featured image and testimonial quote on the right, plus a full-width stats row.