Long Read and Shorts

From the journal

Onelongread,andafewshortones.

About this block

Long Read and ShortsPRO

A journal section with one featured essay, its wide photograph drifting inside the frame, small-caps category and date, a large serif title and an excerpt, beside a ruled list of recent shorter pieces, under a serif heading that settles in word by word and a pill action.

Blog69: Long Read and Shorts

One long read carried on a wide photograph that drifts as the page scrolls, with a ruled list of shorter pieces alongside it, under a heading that settles in word by word beside a pill action.

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

Base UI flavor

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

This installs the block to components/beste/block/blog69.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

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

tsx
import { Blog69, blog69Demo } from "@/components/beste/block/blog69";

export default function Page() {
  return <Blog69 {...blog69Demo} />;
}

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

tsx
import { Blog69 } from "@/components/beste/block/blog69";

export default function Page() {
  return (
    <Blog69
      eyebrow="From the journal"
      heading="One long read, and a few short ones."
      button={{ label: "Open the journal", href: "/journal", tone: "outline" }}
      featured={{
        title: "On not knowing what to say for the first ten minutes",
        excerpt: "Almost everyone starts by apologising for having nothing to say.",
        date: "August 2026",
        category: "Essay",
        href: "/journal/first-ten-minutes",
        image: { src: "/photos/hills.jpg", alt: "Soft fog rolling over layered green hills" },
      }}
      posts={[
        { title: "Rest you do not have to earn", date: "July 2026", href: "/journal/rest" },
        { title: "Why we walk on Fridays", date: "June 2026", href: "/journal/walking" },
      ]}
      labels={{ read: "Read the essay", more: "Also recent" }}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
buttonActionButtonPill action beside the heading
featuredFeaturedPostThe long read, with its own image and excerpt
postsListPost[][]Ruled list of shorter pieces
labels{ read?: string; more?: string }{}Read link wording and the list's small-caps title
classNamestringExtra classes for the outer <section>
ts
type FeaturedPost = {
  title: string;
  excerpt: string;
  date: string;
  category: string;
  href: string;
  image: { src: string; alt: string };
};

type ListPost = {
  title: string;
  date: string;
  href: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The featured article and the list are two independent props, so this works as a one-post teaser, as a plain list of recent titles, or as both together; whichever is missing simply leaves its column empty rather than reflowing the other.
  • The featured image drifts -10% to 10% against a 1.2 scale, further than the sibling three-up index moves its cards, because a single wide 16/10 frame can carry more travel before the crop starts to matter.
  • The read link's arrow animates under motion-safe:, so the hover lift is dropped for anyone who has asked for reduced motion while the link keeps working.
  • The featured card carries three links to the same post (image, title, read link) rather than one wrapper, so the excerpt stays selectable and the heading keeps its own accessible name.
  • List rows use items-baseline, so a two-line title and its date sit on the same first line rather than the date floating to the vertical centre of the row.
  • The list is a ul with divide-y and a border on both ends, so the rules belong to the list itself and adding a row adds a rule.
  • Rows enter with a 0.1s stagger from a 0.3s base, so the sidebar resolves after the essay beside it rather than competing with it.

More Blog blocks

View all Blog
PRO

blog68

Slow Journal

A journal listing: a serif heading settling in word by word beside a pill action, then three staggered article cards whose photographs drift inside their frames, each with a small-caps category and date, a serif title, an excerpt and a read link.

FREE

blog57

Journal Lead And Index

Editorial journal preview pairing one lead entry with a wide image, category, title, excerpt and date against a ruled index of three shorter entries, headed by an eyebrow, a display heading and an outline pill CTA.

PRO

blog70

Post Index Rows

An image-free journal index: a sticky column with a serif heading that settles in word by word and a pill action, beside ruled rows that each carry a small-caps category, a serif title, the date and reading time, and an arrow that lifts on hover.

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

blog64

Curated Reading List With Thumbnails

A curated reading list under a left-aligned header, laid out as two columns of linked rows where a wide thumbnail sits beside the article title and nothing else competes with it.

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.