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.
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.
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
npx shadcn add "https://ui.beste.co/r/blog67?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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).
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.
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:
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" },
],
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the hairline rule |
heading | string | – | Section heading under the rule |
description | string | – | Supporting paragraph, capped at max-w-3xl |
partLabel | string | – | Word before each part number, e.g. "Part" |
series | Series[] | [] | One hairline row per series |
className | string | – | Extra classes for the outer section |
type Series = {
name: string;
status: string;
summary: string;
parts: SeriesPart[];
};
type SeriesPart = {
title: string;
href: string;
};parts renumbers them. The list is an ol, which keeps that order meaningful to a screen reader as well as on screen.status is free text rather than a computed count, so a series can say "three of five published" or "ongoing, no end planned" without the block inventing progress.md up, the name and its state on the left and the parts on the right. Below that the parts fall under their series.blog58
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.
blog57
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.
blog61
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.
blog36
Multi-part tutorial series with numbered parts. Book icon, part count, and progress-style list. Perfect for step-by-step learning content.