Sticky Chapters

What a season looks like

Theworkhasashape,evenwhenitdoesnotfeellikeit.

A small rocky bay below a wooded hillside
  1. 01
    A small rocky bay below a wooded hillside

    Arriving

    The first weeks are for laying things out without sorting them. You talk, we listen, and nothing gets labelled yet.

  2. 02
    A turquoise bay ringed by pines and limestone

    Noticing

    Patterns start to show themselves. Not because we point at them, but because there is finally room to see them.

  3. 03
    A limestone cove with clear green water

    Trying

    Small experiments between sessions: a boundary, a conversation, a morning left empty. We look at what happened together.

  4. 04
    A wide bay of bright blue water between rocky headlands

    Leaving well

    Endings are planned, not abrupt. We slow the rhythm, name what has changed, and leave the door on the latch.

About this block

Sticky ChaptersPRO

A scroll-led feature: a serif heading settling in word by word beside a pill action, then numbered chapters that scroll past a pinned photograph, each one swapping the image with a soft blur and brightening its own title as it reaches the centre of the viewport.

Feature276: Sticky Chapters

Chapters read down a ruled column while one photograph stays pinned beside them, swapping to match whichever chapter is currently in the middle of the screen and dimming the titles that are not.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Feature276, feature276Demo } from "@/components/beste/block/feature276";

export default function Page() {
  return <Feature276 {...feature276Demo} />;
}

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

tsx
import { Feature276 } from "@/components/beste/block/feature276";

export default function Page() {
  return (
    <Feature276
      eyebrow="What a season looks like"
      heading="The work has a shape, even when it does not feel like it."
      button={{ label: "Begin your season", href: "/book" }}
      chapters={[
        {
          title: "Arriving",
          description: "The first weeks are for laying things out without sorting them.",
          image: { src: "/photos/lake.jpg", alt: "Morning mist lifting off a still lake" },
        },
        {
          title: "Leaving well",
          description: "Endings are planned, not abrupt.",
          image: { src: "/photos/dock.jpg", alt: "A wooden dock reaching into a still lake at dusk" },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
buttonActionButtonPill action beside the heading
chaptersChapter[][]Chapters, numbered in the order given
classNamestringExtra classes for the outer <section>
ts
type Chapter = {
  title: string;
  description: string;
  image: { src: string; alt: string };
};

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

Behavior notes

  • Each row watches itself with a -45% 0px -45% 0px margin, so a chapter counts as current only while it occupies the middle band of the viewport. That narrow strip is what makes the swap feel decided rather than twitchy.
  • The sticky photograph is keyed on the active index inside AnimatePresence, so the outgoing picture cross-fades under the incoming one instead of being replaced in a single frame.
  • Titles that are not current sit at text-foreground/40 and lift to full over 700ms, so the column reads as one chapter at a time without anything being hidden.
  • Below md the sticky column is dropped entirely and each chapter renders its own image inline, because a pinned photograph on a phone would take the whole screen.
  • Numbers are derived from the index and padded to two digits, so 01, 02 stay correct as chapters are added or removed.
  • Chapters are an ol with divide-y and a border at both ends, so the sequence is a real ordered list for a screen reader.
  • The photographs clear from blur(24px) on decode, with a complete check on mount so a cached file is not left blurred.

More Feature blocks

View all Feature
PRO

feature250

Sticky Photo With Notes

A single tall photograph pinned with position sticky, captioned without a rule, while a column of eyebrow-led notes scrolls past it, each note after the first opening on its own hairline.

PRO

feature285

Sticky Icon List

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.

PRO

feature60

Feature Walkthrough with Sticky Navigation

Sticky sidebar navigation that scrolls to content sections with images and descriptions. Perfect for product feature tours, documentation pages, and guided walkthroughs.

PRO

feature303

Sticky Header Linked Cards

The heading, intro and pill stay pinned in a sticky column while linked photo cards scroll past in pairs beside them, each photograph drifting inside its frame under a serif title, a meta line and an arrow that lifts on hover.

FREE

feature180

Sticky Image Scroller

Two-column layout with sticky image and scrollable feature cards

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.