Ruled Writing IndexPRO

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.

Blog58: Ruled Writing Index

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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." }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the left column
descriptionstringSupporting paragraph, right-aligned from md up
entriesWritingEntry[][]One ruled row per article
buttonActionButtonOutline pill CTA on the closing rule, rendered as Button12
labelsBlog58Labels{}Fixed strings that are not content: the closing note
classNamestringExtra classes for the outer <section>
ts
type WritingEntry = {
  date: string;
  category: string;
  title: string;
  readingTime: string;
  href: string;
};

type ActionButton = {
  label: string;
  href: string;
};

type Blog58Labels = {
  note?: string;
};

Behavior notes

More Blog blocks

View all Blog
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

blog15

Minimal Text List

Clean text-only blog list with arrow icons. No images, just titles, dates, and authors. Lightweight design with hover arrow animation.

PRO

blog5

Horizontal List with Icons

Vertical stack of horizontal blog cards with left-aligned thumbnails. Features calendar and clock icons for metadata, author titles, and tag badges.

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.

PRO

blog22

Full-Width Stacked Cards

Vertically stacked blog cards with 2:1 aspect ratio images. Full article summaries with author avatars and read more buttons. Long-form content showcase.

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