Newspaper Editorial Style

Classic newspaper layout with serif fonts and bordered headline. Large main story on left, stacked secondary stories on right with dividers.

PRO

Blog27: Newspaper Editorial Style

A newspaper-style editorial layout that renders a bordered masthead (uppercase serif heading, an optional badge, and a lead description) above a two-column grid where the first post becomes a large featured story on the left with a hover-zoom image, title, summary, and author byline, and the remaining posts stack as compact divider-separated rows on the right.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/blog27.tsx, plus the badge shadcn/ui primitive it uses for the masthead eyebrow badge.

Quick start

The installed file exports blog27Demo alongside the block: the exact props behind the preview above. Spread it to get a working editorial blog section in one line.

tsx
import { Blog27, blog27Demo } from "@/components/beste/block/blog27";

export default function Page() {
  return <Blog27 {...blog27Demo} />;
}

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

tsx
import { Blog27 } from "@/components/beste/block/blog27";

export default function Page() {
  return (
    <Blog27
      badge={{ label: "The Daily", variant: "default" }}
      heading="Today's Headlines"
      description="Breaking news and top stories."
      posts={[
        {
          image: { src: "/lead.jpg", alt: "Lead story" },
          title: "The Future of Design Systems",
          summary: "Exploring how design systems are evolving.",
          date: "January 15, 2026",
          author: { name: "Lisa Park", title: "Senior Developer" },
          href: "/blog/design-systems",
        },
        {
          image: { src: "/api.jpg", alt: "API design" },
          title: "Building Scalable APIs",
          summary: "Best practices for high-traffic APIs.",
          date: "January 12, 2026",
          author: { name: "David Chen" },
          href: "/blog/scalable-apis",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Masthead eyebrow badge, rendered only when provided
headingstringUppercase serif masthead heading, rendered only when provided
descriptionstringLead paragraph under the heading, rendered only when provided
postsBlogPost[][]Posts split into one featured story plus stacked secondary rows
classNamestringExtra classes merged onto the outer <section>
ts
type Author = {
  name: string;
  title?: string;
  avatar?: { src: string; alt: string };
  href?: string;
};

type Tag = {
  label: string;
  href?: string;
};

type BlogPost = {
  image: { src: string; alt: string };
  title: string;
  summary: string;
  date?: string;
  readTime?: string;
  author?: Author;
  tags?: Tag[];
  href?: string;
};

Behavior notes

More Blog blocks

View all Blog
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 monospace category, a title, an excerpt, and byline.

FREE

blog25

Split Image with List

Two-column layout with featured image on left and article list on right. Divider-separated entries with arrow hover effects.

PRO

blog10

Alternating Feature Cards

Large alternating left-right blog cards with full article summaries. Image and content switch sides for visual variety. Read more buttons included.

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

blog13

Sidebar with Categories

Main content area with horizontal post cards plus sidebar. Categories show post counts and popular tags section with clickable badges.

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.