Quote Inset Feature

The written note

Afewlinesfromus,thedayaftereverysession.

Not a summary and not homework. A short note on what we heard, and one thing worth noticing before we meet again. People tell us it is the part they keep.

Read a sample note
I have every note from two years in a folder. On bad weeks I read the early ones and remember how far the road goes.
Portrait of a client

Adrianne Lenker

Individual therapy

Within a day
Always before the next morning, usually the same evening.
Yours to keep
Read them back whenever you like. We keep no copy you cannot see.
Never shared
Not with insurers, not with employers, not with anyone.
About this block

Quote Inset FeaturePRO

A single feature explained beside proof: a serif heading that settles in word by word, an intro and a pill action on the left, a soft muted quote card with a portrait on the right, and three ruled points beneath.

Feature289: Quote Inset Feature

A feature explained beside the proof of it: heading, paragraph and pill on one side, a client quote on a soft panel on the other, closed by three ruled facts across the foot.

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.

Upgrade Now

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/feature289?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/feature289.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports feature289Demo alongside the block: the exact props behind the preview above. Spread it to get a working feature section in one line.

tsx
import { Feature289, feature289Demo } from "@/components/beste/block/feature289";

export default function Page() {
  return <Feature289 {...feature289Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Feature289 } from "@/components/beste/block/feature289";

export default function Page() {
  return (
    <Feature289
      eyebrow="The written note"
      heading="A few lines from us, the day after every session."
      description="Not a summary and not homework. A short note on what we heard."
      button={{ label: "Read a sample note", href: "/notes", tone: "outline" }}
      quote={{
        text: "I have every note from two years in a folder.",
        name: "Adrianne Lenker",
        context: "Individual therapy",
        avatar: { src: "/people/adrianne.jpg", alt: "Portrait of a client" },
      }}
      points={[
        { title: "Within a day", description: "Always before the next morning." },
        { title: "Yours to keep", description: "Read them back whenever you like." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringParagraph under the heading
buttonActionButtonPill action under the paragraph
quoteQuoteClient quote on the panel beside the copy
pointsPoint[][]Ruled facts across the foot, three across from md
classNamestringExtra classes for the outer <section>
ts
type Quote = {
  text: string;
  name: string;
  context: string;
  avatar: { src: string; alt: string };
};

type Point = {
  title: string;
  description: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The quote is a real figure with a blockquote and a figcaption, so the attribution is bound to the words rather than being a paragraph that merely follows them.
  • The panel is a flex with justify-between, so the attribution is pinned to the foot and a short quote does not leave the portrait floating in the middle of the card.
  • The avatar sits on a bg-background circle inside the muted panel, so the empty ring reads as an inset rather than as a grey hole while the image loads.
  • The foot facts are a dl with dt/dd pairs under one border-t, so three short facts read as a ruled row rather than as three more cards.
  • Facts enter with a 0.1s stagger by index, resolving left to right.
  • Every part is optional: without quote the copy column keeps its seven columns rather than stretching, and without points the section ends after the panel.
  • Nothing in the quote panel is a link; the pill is the only interactive element in the section.

More Feature blocks

View all Feature
PRO

feature284

Statement and Four

A long serif statement that settles in word by word with a pill action on the left, and on the right four numbered, ruled points with serif titles and short descriptions that arrive in turn.

PRO

feature71

Feature Cards with Customer Quotes

3-column grid of feature cards with embedded testimonial quotes, author names, roles, and avatars. Perfect for pairing features with social proof from real customers.

PRO

feature281

Three Icon Columns

The classic three-column feature: a centred serif heading that settles in word by word and an intro, three columns with a round muted icon, a serif title and a description that arrive in turn, and a sliding-marker pill beneath.

PRO

feature293

Agent Transcript

A split feature: on the left a serif headline that settles in word by word, an intro, a rounded pill that copies the install command on click and a sliding-marker pill; on the right a muted transcript panel where a short exchange with the agent appears message by message, one reply carrying a page preview that blurs in and drifts on scroll.

PRO

feature236

Feature manifesto grid

A text-only feature manifesto: a hairline-bordered grid of short statements, each a bold title and a single explanatory line.

PRO

feature174

Interactive Code Snippet Showcase

Features paired with real code examples inside a code editor UI. Left sidebar lists features, right panel shows the corresponding code with filename tab and syntax styling. Developer-focused showcase.