Interactive principle list that swaps a detail panel with image as each is hovered.
Interactive list of studio principles where hovering, focusing, or clicking a title swaps a sticky detail panel's copy and cross-fades to that principle's photo, so the panel never mounts or unmounts, only the active image's opacity changes.
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/agency17?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/agency17?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/agency17.tsx, the badge6 component it uses for the section eyebrow, and its dependencies.
The installed file exports agency17Demo alongside the block: the exact props behind the preview above. Spread it to get a working principles section in one line.
import { Agency17, agency17Demo } from "@/components/beste/block/agency17";
export default function AboutPage() {
return <Agency17 {...agency17Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Agency17 } from "@/components/beste/block/agency17";
export default function AboutPage() {
return (
<Agency17
label="How We Work"
heading="Three principles that shape every project we ship"
principles={[
{
title: "Measure before you spend",
description: "Every dollar gets a job and a number to hit before it moves.",
image: {
src: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1200&h=750&fit=crop",
alt: "Analytics dashboard charting performance",
},
},
{
title: "Creative is the variable",
description: "Targeting plateaus fast; the creative is where the leverage lives.",
image: {
src: "https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=1200&h=750&fit=crop",
alt: "Designers reviewing creative concepts on a wall",
},
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow text rendered in Badge6 |
heading | string | – | Section heading |
principles | Principle[] | [] | List entries; hovering/clicking one drives the detail panel |
className | string | – | Extra classes for the outer <section> |
type Principle = {
title: string;
description: string;
image: { src: string; alt: string };
};active, defaulting to index 0) is driven by onMouseEnter, onFocus, and onClick on each list button, so keyboard tabbing and pointer hover both switch the panel, not just clicking.lg:sticky lg:top-24, staying pinned in the viewport while the list scrolls alongside it on tall pages.absolute inset-0; only opacity (0 or 100, 500ms transition) toggles per image, so switching principles cross-fades instead of swapping src.text-primary; inactive items only pick up text-primary on hover via group-hover/agency17.01, 02, …) regardless of how many principles are passed.agency21
Ruled, expandable capability rows with oversized type, detail copy, and monospace tag chips.
agency16
Studio overview pairing facts, copy and highlight stats with a clean studio image.
agency23
A services section with an eyebrow over a hairline rule, a two-column heading, and an editorial list of monospace-numbered service rows split into title and description.