Bulletin ColumnsPRO

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.

Blog47: Bulletin Columns

A newsroom bulletin section that opens with a Badge6 eyebrow, then gives the first article a full-width lead treatment: a large bold headline on the left of a seven-and-five grid with its summary, byline, and a Button1 seal button stacked in the narrow right column. Below a single hairline rule, the remaining articles run as three illustrated cards, so the lead and the columns are both derived from one items array by index rather than from separate props.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Blog47, blog47Demo } from "@/components/beste/block/blog47";

export default function Page() {
  return <Blog47 {...blog47Demo} />;
}

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

tsx
import { Blog47 } from "@/components/beste/block/blog47";

export default function Page() {
  return (
    <Blog47
      label="Newsroom"
      labels={{ readMore: "Read the full statement" }}
      items={[
        {
          category: "Press release",
          title: "The co-operative approves a shared packhouse for the valley",
          summary: "Members voted at the spring meeting to fund a grading and cold-store facility.",
          date: "March 4, 2026",
          author: { name: "Maria Santos", title: "Tech Lead" },
          href: "/news/packhouse",
        },
        {
          image: { src: "/news/market-hall.jpg", alt: "Crates of squash at an open-air farm market" },
          category: "Trade",
          title: "Winter opening lifts market hall takings by 12 percent",
          summary: "Stallholder receipts stayed above forecast for a fourth quarter.",
          date: "February 26, 2026",
          author: { name: "David Chen" },
          href: "/news/market-hall",
        },
        {
          image: { src: "/news/tunnels.jpg", alt: "Two growers with a laptop outside a polytunnel" },
          category: "Operations",
          title: "Propagation moves to the Ashfield tunnels before spring plant-out",
          summary: "The transfer adds nine weeks of protected growing.",
          date: "February 11, 2026",
          author: { name: "Lisa Park" },
          href: "/news/propagation",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringBadge6 eyebrow at the top of the section; omitted entirely when absent
itemsArticle[][]Articles for the section; the first becomes the lead, the rest fill the column grid
labels{ readMore?: string }{}Label on the lead's Button1; the button is dropped when unset
classNamestringExtra classes merged onto the outer <section>
ts
type Article = {
  image?: { src: string; alt: string };
  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;
};

Behavior notes

More Blog blocks

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

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

blog54

Pinned Lead Newsroom

A twelve-column newsroom band under a parenthetical eyebrow, pairing one lead story carrying a pinned marker, a large image, and a byline block with a stack of four ruled secondary rows, closing on a pill button to the archive.

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

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.

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.

Markdown version