Principles Selector

Interactive principle list that swaps a detail panel with image as each is hovered.

PRO

Agency17: Principles Selector

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.

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/agency17?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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",
          },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered in Badge6
headingstringSection heading
principlesPrinciple[][]List entries; hovering/clicking one drives the detail panel
classNamestringExtra classes for the outer <section>
ts
type Principle = {
  title: string;
  description: string;
  image: { src: string; alt: string };
};

Behavior notes

More Agency blocks

View all Agency
PRO

agency21

Capabilities Accordion

Ruled, expandable capability rows with oversized type, detail copy, and monospace tag chips.

PRO

agency13

How We Think

Sticky studio intro with a portrait beside a stack of numbered principles.

PRO

agency16

Studio At A Glance

Studio overview pairing facts, copy and highlight stats with a clean studio image.

PRO

agency15

Awards List

Editorial list of studio awards by year with project and recognition details.

PRO

agency23

Numbered Services List

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.

PRO

agency19

Why Polaris

A two-column comparison contrasting the Polaris way with a typical agency.