Month-Grouped Archive

Blog archive organized by month with compact list entries. Small thumbnails and formatted dates create a scannable chronological view.

PRO

Blog18: Month-Grouped Archive

A chronological blog archive that groups posts by month-and-year headings, sorting the groups newest-first and rendering each post as a compact row with a square thumbnail, a short formatted date, an optional read time, a title, and an optional author name.

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

Base UI flavor

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

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

Quick start

The installed file exports blog18Demo alongside the block: the exact props behind the preview above. Spread it to get a working month-grouped archive in one line.

tsx
import { Blog18, blog18Demo } from "@/components/beste/block/blog18";

export default function Page() {
  return <Blog18 {...blog18Demo} />;
}

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

tsx
import { Blog18 } from "@/components/beste/block/blog18";

export default function Page() {
  return (
    <Blog18
      badge={{ label: "Archive", variant: "default" }}
      heading="Blog Archive"
      description="Browse our articles by date."
      posts={[
        {
          image: { src: "/covers/design-systems.jpg", alt: "Design systems" },
          title: "The Future of Design Systems",
          summary: "How design systems are evolving.",
          date: "January 15, 2026",
          readTime: "8 min",
          author: { name: "Lisa Park", title: "Senior Developer" },
          href: "/blog/design-systems",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Section eyebrow badge, rendered above the heading
headingstringSection heading
descriptionstringMuted intro paragraph under the heading
postsBlogPost[][]Posts grouped into monthly sections
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;
};

Behavior notes

More Blog blocks

View all Blog
PRO

blog42

Timeline Year Archive

Vertical timeline archive organized by year and month. Calendar icon with border line connecting entries. Compact text-only format.

PRO

blog11

Compact Thumbnail List

Two-column compact blog list with small square thumbnails. Space-efficient design showing many posts at once with minimal metadata.

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

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

blog15

Minimal Text List

Clean text-only blog list with arrow icons. No images, just titles, dates, and authors. Lightweight design with hover arrow animation.

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.