About with two subtly rotated, captioned studio photos clustered beside the statement.
About section that pairs a two-photo pinned cluster (rotated, captioned cards with a small pin dot, like notes tacked to a board) against a statement, an inline stats line, and a single CTA button. The photo cluster and statement swap sides between mobile and desktop.
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/about53?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about53?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about53.tsx, the badge6 component it uses for the eyebrow label, the button1 component it uses for the CTA, and its dependencies.
The installed file exports about53Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { About53, about53Demo } from "@/components/beste/block/about53";
export default function Page() {
return <About53 {...about53Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { About53 } from "@/components/beste/block/about53";
export default function Page() {
return (
<About53
label="Inside The Studio"
heading="We build <strong>brands</strong> that people pin to their wall."
description="Polaris is a small creative studio working at the seam of strategy and craft."
button={{ label: "See The Studio", href: "/studio" }}
photos={[
{ image: "https://images.unsplash.com/photo-1542038784456-1ea8e935640e?w=900&h=1100&fit=crop", caption: "Roll 14, set day" },
{ image: "https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=900&h=1100&fit=crop", caption: "Pinned: the cut we almost killed" },
]}
stats={[
{ value: "11 yrs", label: "of quiet making" },
{ value: "60+", label: "brands shipped" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow text rendered in a Badge6 |
heading | string | – | Statement heading; supports inline <strong> for the accent color |
description | string | – | Supporting paragraph under the heading |
button | ActionLink | – | Single CTA rendered as a Button1 with an arrow icon |
photos | PinnedPhoto[] | [] | Photo cluster source; only the first two are used |
stats | StatItem[] | [] | Inline stat pairs shown beneath the button |
className | string | – | Extra classes for the outer <section> |
type ActionLink = { label: string; href: string };
type PinnedPhoto = { image: string; caption: string };
type StatItem = { value: string; label: string };photos are ever rendered (photos.slice(0, 2)); any additional items in the array are silently ignored.sm:rotate-2 / sm:-rotate-3) and the second is absolutely positioned to overlap the bottom-right of the first, but only from the sm breakpoint up; below that they stack vertically in a plain column.group/about53) straightens both photos slightly (rotate-1 / -rotate-1), a subtle "un-pin" effect on hover.lg up, lg:order-first/lg:order-last flips the statement to the left column and the photos to the right.bg-primary) centered at its top edge, reinforcing the pinned-note visual.about51
A statement heading over a belief list punctuated by intermittent inline thumbnails.
about63
Image-led about split with a tall portrait, an offset statement heading, supporting copy, mono studio facts, and a seal CTA.
about39
About anchored by an oversized numeral with a paragraph and a horizontal image strip.
about20
Wide team photo, member list with avatars, team stats grid, and a culture quote. A rich team showcase layout.