Minimal Text List

About this block

Minimal Text ListPRO

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

Blog15: Minimal Text List

A single-column, image-free article index inside a max-w-3xl container: an optional badge/heading/description header sits above a stack of border-b rows, each row a full-width link showing the first tag, date, dot-separated read time, title, and a "by " line, with an ArrowUpRight icon that nudges up-and-right on hover.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Blog15, blog15Demo } from "@/components/beste/block/blog15";

export default function Page() {
  return <Blog15 {...blog15Demo} />;
}

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

tsx
import { Blog15 } from "@/components/beste/block/blog15";

export default function Page() {
  return (
    <Blog15
      badge={{ label: "Archive", variant: "default" }}
      heading="All Articles"
      description="A complete list of everything we've published."
      posts={[
        {
          image: { src: "/covers/design-systems.jpg", alt: "Design systems" },
          title: "The Future of Design Systems",
          summary: "Exploring how design systems are evolving.",
          date: "January 15, 2026",
          readTime: "8 min",
          author: { name: "Lisa Park" },
          tags: [{ label: "Design", href: "/blog/design-systems" }],
          href: "/blog/design-systems",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional header eyebrow badge; whole header block renders only when at least one of badge, heading, or description is set
headingstringSection heading rendered as an <h2>
descriptionstringMuted paragraph shown under the heading
postsBlogPost[][]Rows rendered in the vertical list
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

  • Despite BlogPost requiring image and summary, this block renders neither: the layout is text-only, so both fields are collected but never displayed.
  • Each row is a next/link pointing at post.href, falling back to "#" when href is omitted; there is no onClick or navigation callback to hook into.
  • Only the first tag is shown, and only its label as a plain text-primary span; tags[1] onward and every tag.href are ignored, so tags are not clickable.
  • The author line renders just by {author.name}; author.title, author.avatar, and author.href are part of the type but unused by the markup.
  • readTime is rendered with a leading middot separator only when present, and the entire meta row (tag, date, read time) collapses gracefully as each field is individually optional.
  • Rows are keyed by array index, so reordering or filtering posts can cause React to reuse the wrong DOM node.
  • The ArrowUpRight icon and title color shift are pure CSS hover effects scoped to the group/blog15 article; nothing about selection or active state is tracked in component state.

More Blog blocks

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

blog58

Ruled Writing Index

Image-free article index where every entry is one ruled row carrying the date, the category, the title and the reading time with a corner arrow, stacking to a readable block on mobile.

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

blog60

Featured Article With Recent List

A blog section pairing one linked feature with a hover-zoom image, category label, and byline against a hairline list of five recent posts stamped with their date.

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.