Centered heading with description, followed by two images side-by-side. Configurable image ratio (equal, left larger, right larger). Always horizontal on mobile.
A centered heading and description sit above two photos placed side by side in a single row, with a configurable width ratio between them (equal, left larger, or right larger). The row stays horizontal at every screen size, including mobile, rather than stacking the two images vertically.
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/about32?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about32?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about32.tsx and its dependencies.
The installed file exports about32Demo alongside the block: the exact props behind the preview above. Spread it to get a working about section in one line.
import { About32, about32Demo } from "@/components/beste/block/about32";
export default function AboutPage() {
return <About32 {...about32Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { About32 } from "@/components/beste/block/about32";
export default function AboutPage() {
return (
<About32
heading="Our Story"
description="We started in a single room above a bakery with three laptops and a whiteboard."
images={[
{
id: "img-1",
src: "https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&h=900&fit=crop",
alt: "Modern office workspace",
},
{
id: "img-2",
src: "https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1600&h=900&fit=crop",
alt: "Team collaborating around a table",
},
]}
imageLayout="left-larger"
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Centered section heading |
description | string | – | Centered lead paragraph under the heading |
images | ImageItem[] | [] | Photo pair rendered side by side; only the first two are shown |
imageLayout | "equal" | "left-larger" | "right-larger" | "equal" | Column width ratio between the two images |
className | string | – | Extra classes for the outer <section> |
type ImageItem = { id: string; src: string; alt: string };images are ever rendered (images.slice(0, 2)); passing a third or fourth image has no visible effect.imageLayout maps to a fixed set of grid template columns: equal uses grid-cols-2, left-larger uses grid-cols-[2fr_1fr], and right-larger uses grid-cols-[1fr_2fr]. There is no ratio other than 2:1 in either direction.aspect-[2/1] row height, so a taller or shorter source photo is always cropped via object-cover to fit that shared box, not its own independent aspect ratio.registryDependencies: [], no shadcn/ui primitives and no badge/buttons props at all, making it the most minimal block in this set: just a heading, a description, and two images.about5
Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.
about21
Two-column layout with checklist highlights on the left, featured image and testimonial quote on the right, plus a full-width stats row.
about23
Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.
about22
Asymmetric two-column layout with heading on the left and question-answer pairs on the right. A conversational way to introduce your company.
about6
Asymmetric two-column layout with heading on the left and numbered company principles on the right. Clean and editorial.
about13
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.