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.

PRO

Blog14: Grid with Newsletter Card

A centered heading block over a responsive card grid that mixes a newsletter signup card (icon, heading, description, email input, subscribe button) with blog post cards, each showing a linked cover image, an optional first tag, a clamped title and summary, and an author name plus read time.

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

Base UI flavor

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

This installs the block to components/beste/block/blog14.tsx, plus the badge, button, and input shadcn/ui primitives it uses for the eyebrow and post tags, the subscribe button, and the newsletter email field.

Quick start

The installed file exports blog14Demo alongside the block: the exact props behind the preview above. Spread it to get a working blog grid with an embedded newsletter card in one line.

tsx
import { Blog14, blog14Demo } from "@/components/beste/block/blog14";

export default function Page() {
  return <Blog14 {...blog14Demo} />;
}

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

tsx
import { Blog14 } from "@/components/beste/block/blog14";

export default function Page() {
  return (
    <Blog14
      badge={{ label: "Blog", variant: "default" }}
      heading="Stories & Updates"
      description="The latest news and insights from our team."
      newsletter={{
        heading: "Subscribe to our newsletter",
        description: "Get the latest articles delivered to your inbox.",
        placeholder: "Enter your email",
        buttonLabel: "Subscribe",
      }}
      posts={[
        {
          image: { src: "/posts/design-systems.jpg", alt: "Design systems" },
          title: "The Future of Design Systems",
          summary: "How design systems evolve to meet complex web apps.",
          readTime: "8 min read",
          author: { name: "Lisa Park", title: "Senior Developer" },
          tags: [{ label: "Design", href: "/blog/design-systems" }],
          href: "/blog/design-systems",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, rendered as plain text
descriptionstringSupporting paragraph under the heading
postsBlogPost[][]Post cards rendered into the grid
newsletterNewsletterSignup card placed as the first grid cell
classNamestringExtra classes for 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;
};

type Newsletter = {
  heading?: string;
  description?: string;
  placeholder?: string;
  buttonLabel?: string;
};

Behavior notes

Wiring the form up

This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.

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

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

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

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

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.