Timeline Year Archive

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

PRO

Blog42: Timeline Year Archive

A vertical archive that groups posts by year and month parsed from each post's date string, rendering years in descending order with a calendar-icon header and a bordered timeline rail, under which each month lists its posts as compact next/link rows showing the title and a short month/day date plus a hover-revealed chevron.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Blog42, blog42Demo } from "@/components/beste/block/blog42";

export default function Page() {
  return <Blog42 {...blog42Demo} />;
}

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

tsx
import { Blog42 } from "@/components/beste/block/blog42";

export default function Page() {
  return (
    <Blog42
      badge={{ label: "Archive", variant: "default" }}
      heading="Blog Archive"
      description="Browse articles by date."
      posts={[
        { title: "The Future of Web Development", date: "January 28, 2026", href: "/blog/future-of-web" },
        { title: "Year in Review", date: "December 28, 2025", href: "/blog/year-in-review" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional centered eyebrow badge above the heading
headingstringOptional centered section heading
descriptionstringOptional muted paragraph under the heading
postsBlogPost[][]Posts grouped into the year/month timeline
classNamestringExtra classes for the outer <section>
ts
type BlogPost = {
  title: string;
  date: string;
  href?: string;
};

Behavior notes

More Blog blocks

View all Blog
PRO

blog18

Month-Grouped Archive

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

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

blog27

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

blog11

Compact Thumbnail List

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