Sticky Icon List

How it feels in practice

Everythingaroundthehour,explainedplainly.

The session is the centre. These are the things that hold it in place.

Ask about any of these
  • Booking

    Pick a recurring slot once. It stays yours until you change it, and you can move it with a message.

  • Room or video

    Decide each week. The link and the address are both in the same reminder.

  • Notes

    A few lines from us within a day. Yours to keep, yours to read back, never shared.

  • Pausing

    Life happens. Pause for a month or a season without losing your slot or your practitioner.

  • Confidentiality

    What is said in the room stays there, with the legal exceptions we explain before we start.

About this block

Sticky Icon ListPRO

A feature list with a sticky column, where a serif heading settles in word by word above the intro and a pill action, beside ruled rows that each blur in with a round muted icon, a serif title and a description.

Feature285: Sticky Icon List

A sticky column of heading, intro and pill beside a ruled list where each row pairs a circled icon with a serif title and a short explanation.

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

Base UI flavor

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

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

Quick start

The installed file exports feature285Demo alongside the block: the exact props behind the preview above. Spread it to get a working explainer list in one line.

tsx
import { Feature285, feature285Demo } from "@/components/beste/block/feature285";

export default function Page() {
  return <Feature285 {...feature285Demo} />;
}

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

tsx
import { Feature285 } from "@/components/beste/block/feature285";

export default function Page() {
  return (
    <Feature285
      eyebrow="How it feels in practice"
      heading="Everything around the hour, explained plainly."
      description="The session is the centre. These are the things that hold it in place."
      button={{ label: "Ask about any of these", href: "/contact", tone: "outline" }}
      items={[
        { icon: CalendarDays, title: "Booking", description: "Pick a recurring slot once. It stays yours until you change it." },
        { icon: Pause, title: "Pausing", description: "Pause for a month without losing your slot or your practitioner." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringIntro in the sticky column
buttonActionButtonPill action under the intro
itemsItem[][]Ruled rows, in the order given
classNamestringExtra classes for the outer <section>
ts
type Item = {
  icon: LucideIcon;
  title: string;
  description: string;
};

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

Behavior notes

  • icon takes the Lucide component itself rather than a name string, so icons are tree-shaken with your bundle and there is no icon map to keep in sync.
  • Every row shares one flat 0.1s delay instead of a growing stagger, because a list this tall is read one row at a time and an index-scaled delay would leave the last item arriving seconds late.
  • Rows use a tighter -15% viewport margin than the header, so an item settles once it is properly inside the reading area rather than the moment it clips the bottom edge.
  • The icon circle carries shrink-0, so a long title wraps under itself rather than squeezing the mark.
  • The list is a ul with divide-y and a border at both ends, so the rules belong to the list and adding a row adds a rule.
  • The left column is md:sticky md:top-28 and falls back to normal flow below md, where a sticky column would cover the rows.
  • Nothing in the list is a link; the pill in the sticky column is the only interactive element in the section.

More Feature blocks

View all Feature
PRO

feature296

Sticky Command List

A sticky left column holds the eyebrow, 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 long ruled list of numbered points settles in row by row as the page scrolls past.

PRO

feature264

Sticky Reference List

A feature with a heading column that sticks while three labelled groups of checked capabilities scroll past it, closing on a footnote under a hairline.

PRO

feature227

Sticky feature list with images

Sticky left intro paired with a stacked, numbered list of feature blocks, each with a title, description, and small image.

FREE

feature180

Sticky Image Scroller

Two-column layout with sticky image and scrollable feature cards

PRO

feature233

Compact two-column icon feature list

A header with a badge, heading, and description, followed by many compact items in a two-column grid — each a lucide icon in a rounded bg-muted tile beside a title and one-line description.

PRO

feature209

Sticky Services

Sticky intro column beside a scrollable stack of numbered service blocks.