Series Index With Standing StatePRO

An index of writing that was planned as runs rather than posts, pairing each series and how far along it is with its numbered parts in the column beside it.

Blog67: Series Index With Standing State

An index of writing that was planned as runs rather than posts, pairing each series and how far along it is with its numbered parts in the column beside it.

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

Base UI flavor

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

This installs the block to components/beste/block/blog67.tsx and the badge6 component it uses for the eyebrow (installed to components/beste/component/badge6.tsx).

Quick start

The installed file exports blog67Demo alongside the block: the exact props behind the preview above. Spread it to get a working series index in one line.

tsx
import { Blog67, blog67Demo } from "@/components/beste/block/blog67";

export default function SeriesPage() {
  return <Blog67 {...blog67Demo} />;
}

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

tsx
import { Blog67 } from "@/components/beste/block/blog67";

export default function SeriesPage() {
  return (
    <Blog67
      eyebrow="Written in order"
      heading="The series, and where each one stands"
      description="Some pieces only make sense next to the ones around them."
      partLabel="Part"
      series={[
        {
          name: "Pricing the work",
          status: "Finished, six parts",
          summary: "From the first email to the invoice.",
          parts: [
            { title: "The day we stopped billing hours", href: "/essays/hours" },
            { title: "What a flat price has to cover", href: "/essays/flat-price" },
          ],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the hairline rule
headingstringSection heading under the rule
descriptionstringSupporting paragraph, capped at max-w-3xl
partLabelstringWord before each part number, e.g. "Part"
seriesSeries[][]One hairline row per series
classNamestringExtra classes for the outer section
ts
type Series = {
  name: string;
  status: string;
  summary: string;
  parts: SeriesPart[];
};

type SeriesPart = {
  title: string;
  href: string;
};

Behavior notes

More Blog blocks

View all Blog
PRO

blog58

Ruled Writing Index

Image-free article index where every entry is one ruled row carrying the date, the category, the title and the reading time with a corner arrow, stacking to a readable block on mobile.

FREE

blog57

Journal Lead And Index

Editorial journal preview pairing one lead entry with a wide image, category, title, excerpt and date against a ruled index of three shorter entries, headed by an eyebrow, a display heading and an outline pill CTA.

FREE

blog61

Filterable Archive Index

A dense blog archive whose subject pills are derived from the posts themselves and carry live counts, filtering a two-column list of hairline rows stamped with a date and a reading time.

PRO

blog36

Tutorial Series Cards

Multi-part tutorial series with numbered parts. Book icon, part count, and progress-style list. Perfect for step-by-step learning content.

PRO

blog44

Newsroom Lead and Index

A newsroom listing with a heading, a divider, and an eyebrow over a hairline rule, a two-column lead story with a large image, the remaining stories stacked as numbered ruled rows with square thumbnails, and a seal button to the full archive.

PRO

blog43

Editorial Article Grid

A blog listing with an eyebrow over a hairline rule, a two-column heading, and three linked article cards with a hover-zoom image, a category label, a title, an excerpt, and byline.

Markdown version