Notes Wall

Said afterwards

Shortnotes,leftonthewayout.

I did not fix anything in the first month. I just stopped pretending, which turned out to be the fix.
Portrait

Ben Howard

One year

The room is the quietest place in my week. I would come just for that.
Portrait

Esperanza Spalding

Eight months

Coaching gave me a plan. The plan gave me a reason to stop rewriting it.
Portrait

Nick Mulvey

Ten sessions

Walking sessions. Say less, notice more. It works.
Portrait

Arlo Parks

Fridays, on foot

Nobody rushed me toward a conclusion. I got there anyway, later, on my own feet.
Portrait

Ólafur Arnalds

Two years

Online, from another country, and it still felt like being in the room.
Portrait

Cat Power

Video sessions

About this block

Notes WallPRO

A wall of six short testimonials on soft muted cards, the middle column set a step lower, each with a serif quote, a portrait, a name and a context line, under a serif heading that settles in word by word and a pill action.

Testimonial49: Notes Wall

A wall of short notes: six quotes on soft panels, each with an avatar and a context line, staggered so the middle column of every row sits a step lower.

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

Base UI flavor

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

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

Quick start

The installed file exports testimonial49Demo alongside the block: the exact props behind the preview above. Spread it to get a working testimonial wall in one line.

tsx
import { Testimonial49, testimonial49Demo } from "@/components/beste/block/testimonial49";

export default function Page() {
  return <Testimonial49 {...testimonial49Demo} />;
}

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

tsx
import { Testimonial49 } from "@/components/beste/block/testimonial49";

export default function Page() {
  return (
    <Testimonial49
      eyebrow="Said afterwards"
      heading="Short notes, left on the way out."
      button={{ label: "Leave your own", href: "/feedback", tone: "outline" }}
      quotes={[
        {
          quote: "I did not fix anything in the first month. I just stopped pretending.",
          name: "Ben Howard",
          context: "One year",
          avatar: { src: "/people/ben.jpg", alt: "Portrait" },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
buttonActionButtonPill action beside the heading
quotesQuote[][]Note cards, three across from md
classNamestringExtra classes for the outer <section>
ts
type Quote = {
  quote: string;
  name: string;
  context: string;
  avatar: { src: string; alt: string };
};

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

Behavior notes

  • The staggered look comes from one selector, lg:[&>*:nth-child(3n+2)]:mt-10, which drops the middle card of each row by a step; it applies to any number of quotes and disappears below lg where it would only look like broken spacing.
  • The entry delay is (index % 3) * 0.12, so each row of three resolves left to right and the delay resets on the next row rather than growing across six cards.
  • Each card is a figure with a blockquote and a figcaption, so the attribution is bound to the words rather than merely following them.
  • Cards are flex with justify-between, so every attribution sits at the foot of its panel and the avatars line up across a row of uneven quotes.
  • 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.
  • context is a free string, so "One year", "Ten sessions" or "Fridays, on foot" all read naturally.
  • Nothing here is a link; the pill beside the heading is the only interactive element.

More Testimonial blocks

View all Testimonial
PRO

testimonial54

Three Ruled Quotes

Three short testimonials in ruled columns, each a serif quote with a name and context, under a serif heading that settles in word by word and a sliding-marker pill.

PRO

testimonial26

Quote Wall

Masonry column wall of varied-length testimonial cards with avatars.

PRO

testimonial36

Masonry Quote Wall

A monochrome masonry wall of varying-height testimonial cards in a CSS columns layout.

PRO

testimonial32

Scrolling Testimonial Wall

Centered header above three vertically auto-scrolling columns of rated review cards with fade masks, pause-on-hover, and a closing CTA.

PRO

testimonial53

Portrait and Long Quote

One long testimonial beside a portrait: the photograph drifts inside its frame on the left while a serif quote settles in word by word on the right, closed by a ruled row with the speaker's name, context and a sliding-marker pill.

PRO

testimonial45

Client Quote Ledger

Three testimonials as ruled columns, each led by a grayscale client logo, followed by a large quote and an attribution block that names the person, the role and the project they hired the studio for.