An image-free journal index: a sticky column with a serif heading that settles in word by word and a pill action, beside ruled rows that each carry a small-caps category, a serif title, the date and reading time, and an arrow that lifts on hover.
A post index as a ruled table: a sticky column of heading and pill action beside rows that each line up a category, a serif title, a date with reading time, and an arrow that lifts on hover.
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/blog70?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/blog70?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/blog70.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports blog70Demo alongside the block: the exact props behind the preview above. Spread it to get a working post index in one line.
import { Blog70, blog70Demo } from "@/components/beste/block/blog70";
export default function Page() {
return <Blog70 {...blog70Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Blog70 } from "@/components/beste/block/blog70";
export default function Page() {
return (
<Blog70
eyebrow="Recent writing"
heading="Short pieces, read in the time it takes the kettle to boil."
button={{ label: "Everything we have written", href: "/journal", tone: "outline" }}
posts={[
{ title: "The first ten minutes", category: "Practice", date: "August 2026", readTime: "4 min", href: "/journal/ten" },
{ title: "Rest, unearned", category: "Tools", date: "July 2026", readTime: "6 min", href: "/journal/rest" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
button | ActionButton | – | Pill action under the heading |
posts | Post[] | [] | Index rows, in the order given |
className | string | – | Extra classes for the outer <section> |
type Post = {
title: string;
category: string;
date: string;
readTime: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};md the grid collapses to a single column and the arrow is dropped with hidden md:block, because a hover affordance is dead weight on a touch screen.Link, which means the entire strip is the hit target rather than just the title.motion-safe:, and the title's colour shift is a plain transition, so the row still gives hover feedback when motion is reduced.md:sticky md:top-28 so the heading and action stay with the reader down a long list, and reverts to normal flow below md where a sticky column would cover the rows.0.08s stagger, which is deliberately tighter than the card blocks in the set: a list of five reads as one object, and a longer stagger would make the last row arrive noticeably late.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.
blog68
A journal listing: a serif heading settling in word by word beside a pill action, then three staggered article cards whose photographs drift inside their frames, each with a small-caps category and date, a serif title, an excerpt and a read link.
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.
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.
blog69
A journal section with one featured essay, its wide photograph drifting inside the frame, small-caps category and date, a large serif title and an excerpt, beside a ruled list of recent shorter pieces, under a serif heading that settles in word by word and a pill action.