Editorial Article Grid

About this block

Editorial Article GridPRO

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.

Blog43: Editorial Article Grid

A blog listing section that stacks an optional eyebrow badge over a hairline top rule, a two-column band pairing a large light-weight heading on the left with a right-aligned muted description, and a three-column grid of linked article cards, each rendering a hover-zoom cover image, an uppercase category label, a title, an excerpt, and an author-and-date byline.

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

Base UI flavor

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

This installs the block to components/beste/block/blog43.tsx, plus the badge23 beste component it uses to render the eyebrow badge.

Quick start

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

tsx
import { Blog43, blog43Demo } from "@/components/beste/block/blog43";

export default function Page() {
  return <Blog43 {...blog43Demo} />;
}

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

tsx
import { Blog43 } from "@/components/beste/block/blog43";

export default function Page() {
  return (
    <Blog43
      badge={{ label: "Field notes" }}
      heading="Ideas for running a calmer practice"
      description="Short, practical writing on scheduling and billing."
      items={[
        {
          image: { src: "/blog/no-shows.jpg", alt: "A tidy reception desk" },
          category: "Operations",
          title: "The five-minute habit that kills no-shows",
          excerpt: "A tiny change to how you confirm appointments does more than any reminder blast.",
          author: "Elena Rourke",
          date: "May 8",
          href: "/blog/no-shows",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow badge rendered above the rule via Badge23; omitted entirely when absent
headingstringLeft-column section heading
descriptionstringRight-aligned muted supporting paragraph
itemsArticle[][]Article cards rendered in the grid
classNamestringExtra classes merged onto the outer <section>
ts
type Article = {
  image: { src: string; alt: string };
  category: string;
  title: string;
  excerpt: string;
  author: string;
  date: string;
  href: string;
};

Behavior notes

  • Each card is a Next.js Link pointing at item.href, so navigation is real routing with no click handler or onClick callback to intercept; the whole card is the target.
  • The badge, heading, and description are each conditionally rendered and disappear cleanly when their prop is missing, so the block degrades to just the card grid.
  • The badge uses the imported Badge23 component and passes only item.label through; no variant or tone control is exposed.
  • heading and title are rendered as plain text, not dangerouslySetInnerHTML, so inline <strong> or other markup is not interpreted.
  • Cards are keyed by array index rather than href or an id, so reordering items remounts rather than reorders them.
  • The card image lives in an aspect-video clip and scales to scale-105 on hover, guarded by motion-safe: so it is skipped for users who prefer reduced motion; the title also shifts to text-primary on the same group hover.
  • The grid is fixed at md:grid-cols-3 regardless of how many items are passed, so fewer than three articles leave trailing empty columns and more than three wrap to new rows.
  • The byline joins author and date with a middot (author · date); both strings are required on every item and are printed verbatim with no date formatting.

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.

FREE

blog3

Card Grid with Authors

Three-column responsive grid of blog cards featuring author avatars, tag badges, and hover zoom effects. Clean card design with date and read time metadata.

PRO

blog60

Featured Article With Recent List

A blog section pairing one linked feature with a hover-zoom image, category label, and byline against a hairline list of five recent posts stamped with their date.

FREE

blog4

Featured Hero with Grid

Large featured article with side-by-side image and content, followed by a three-column grid of secondary posts. Read more buttons and author details included.

PRO

blog56

Category Mosaic

A six-slot photo mosaic under a parenthetical eyebrow and a large heading, where every tile is bound to one newsroom category so the grid doubles as a section map, with a ruled legend naming the sections above it.

PRO

blog14

Grid with Newsletter Card

Four-column grid mixing blog cards with an integrated newsletter signup card. Email input and subscribe button embedded in the layout.