Quad LedgerPRO

An image-free newsroom index with a square eyebrow, a two-column heading band over a hairline rule, four linked release cards that each pair an accent counter with a kicker, headline, dek, and byline, and a seal button to the full archive.

Blog49: Quad Ledger

An image-free blog index that opens with a Badge6 eyebrow and a two-column heading band above a hairline rule, then lists linked stories as bordered cards where every card pairs a zero-padded accent counter with a bold headline, a category-and-date kicker, a summary, and a byline. No image is rendered anywhere in the block, and an optional Button1 seal button closes the section below the grid.

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

Base UI flavor

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

This installs the block to components/beste/block/blog49.tsx and its dependencies, including the Badge6 and Button1 components it renders.

Quick start

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

tsx
import { Blog49, blog49Demo } from "@/components/beste/block/blog49";

export default function Page() {
  return <Blog49 {...blog49Demo} />;
}

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

tsx
import { Blog49 } from "@/components/beste/block/blog49";

export default function Page() {
  return (
    <Blog49
      label="Press office"
      heading="Company announcements"
      description="Statements and filings issued by the communications office, listed in order of release."
      items={[
        {
          category: "Operations",
          title: "Second storage site opens in Aragon",
          summary:
            "The facility connects to the regional transmission network in April.",
          date: "February 4, 2026",
          author: { name: "Maria Santos", title: "Tech Lead" },
          href: "/press/aragon-storage",
        },
        {
          category: "Governance",
          title: "Board appoints a new audit committee chair",
          summary:
            "The appointment takes effect at the close of the annual general meeting.",
          date: "January 27, 2026",
          author: { name: "David Chen" },
          href: "/press/audit-chair",
        },
      ]}
      button={{ label: "Full press archive", href: "/press" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringBadge6 eyebrow above the heading; omitted entirely when absent
headingstringHeading in the left column of the heading band
descriptionstringMuted supporting paragraph in the right column, capped at max-w-md
itemsArticle[][]Story cards rendered into the grid
buttonActionButtonButton1 seal button centered below the grid; omitted entirely when absent
classNamestringExtra classes merged onto the outer <section>
ts
type Article = {
  category: string;
  title: string;
  summary: string;
  date: string;
  author: Author;
  href: string;
};

type Author = {
  name: string;
  title?: string;
  avatar?: { src: string; alt: string };
  href?: string;
};

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

Behavior notes

More Blog blocks

View all Blog
PRO

blog48

Quad Grid

A newsroom listing with a square eyebrow, a two-column heading band over a hairline rule, and four equally weighted stories as bordered cards, each linking through a hover-zoom image, a category kicker, a bold headline, a summary, and a byline pinned to the card foot.

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

blog46

Front Page Columns

A newsroom front page with a heading, a divider, and a square eyebrow over a hairline rule, a wide lead story whose headline and standfirst split across a twelve column band under a panoramic image, and the remaining articles set as three bordered text cards.

PRO

blog47

Bulletin Columns

A newsroom bulletin with a square eyebrow, an image-free lead story split across a 7/5 grid with a standfirst, byline, and a seal button, then three illustrated columns with hover-zoom images below a single hairline rule.

PRO

blog52

Newsroom Masonry

A CSS-columns masonry of linked newsroom cards under a parenthetical eyebrow and a large heading, where the image aspect ratio cycles by position so the wall keeps an uneven, magazine-like rhythm.

PRO

blog55

Press Release Wall

A three-column wall of image-free press release cards on soft muted surfaces under a parenthetical eyebrow and a large heading, each card pairing a release type and date with a headline, dek, byline, and a ruled category row.

Markdown version