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.
Image-free article index for pages that need depth without weight. Every entry is one ruled row carrying the date, the category, the title and the reading time with a corner arrow, so five or fifteen pieces cost the same vertical space per item.
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/blog58?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/blog58?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/blog58.tsx plus the badge7 eyebrow and button12 pill button it uses.
The installed file exports blog58Demo alongside the block: the exact props behind the preview above. Spread it to get a working index in one line.
import { Blog58, blog58Demo } from "@/components/beste/block/blog58";
export default function Page() {
return <Blog58 {...blog58Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Blog58 } from "@/components/beste/block/blog58";
export default function Page() {
return (
<Blog58
badge={{ label: "Published" }}
heading="An index of everything we published this year."
description="Short pieces, mostly written the week after a project closed."
entries={[
{
date: "18 June 2026",
category: "Systems",
title: "The guideline nobody opens, and what we write instead",
readingTime: "7 min",
href: "/journal/guidelines",
},
]}
button={{ label: "Open the archive", href: "/journal" }}
labels={{ note: "One piece a fortnight." }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Section heading in the left column |
description | string | – | Supporting paragraph, right-aligned from md up |
entries | WritingEntry[] | [] | One ruled row per article |
button | ActionButton | – | Outline pill CTA on the closing rule, rendered as Button12 |
labels | Blog58Labels | {} | Fixed strings that are not content: the closing note |
className | string | – | Extra classes for the outer <section> |
type WritingEntry = {
date: string;
category: string;
title: string;
readingTime: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
};
type Blog58Labels = {
note?: string;
};next/link spanning all four columns, so the whole rule is clickable rather than just the title.md:grid-cols-[minmax(0,10rem)_minmax(0,9rem)_1fr_auto] on md:items-baseline: date and category get fixed measures, the title absorbs the width, and the reading time sits flush right with its arrow.date is a preformatted string, so entries can read 18 June 2026, Issue 04 or Spring without the block importing a date library or worrying about locale.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.
blog15
Clean text-only blog list with arrow icons. No images, just titles, dates, and authors. Lightweight design with hover arrow animation.
blog5
Vertical stack of horizontal blog cards with left-aligned thumbnails. Features calendar and clock icons for metadata, author titles, and tag badges.
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.