Why the first ten minutes of a session are the hardest
Almost everyone spends them apologising for not knowing where to start. Here is what we do with that silence.
ReadAlmost everyone spends them apologising for not knowing where to start. Here is what we do with that silence.
ReadRest that has to be deserved is not rest. Three small experiments for people who cannot sit still.
ReadSlow is not the same as passive. A look at what actually happens between sessions, and why it matters more than the hour itself.
ReadA 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.
A three-up journal index: a heading that settles in word by word beside a pill action, then post cards whose photographs drift inside their frames, each with a category and date rule, a serif title and a read link whose arrow lifts 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.
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
npx shadcn add "https://ui.beste.co/r/blog68?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/blog68?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/blog68.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports blog68Demo alongside the block: the exact props behind the preview above. Spread it to get a working journal index in one line.
import { Blog68, blog68Demo } from "@/components/beste/block/blog68";
export default function Page() {
return <Blog68 {...blog68Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Blog68 } from "@/components/beste/block/blog68";
export default function Page() {
return (
<Blog68
eyebrow="Journal"
heading="Notes from the slow lane."
button={{ label: "Browse all writing", href: "/journal", tone: "outline" }}
posts={[
{
title: "Why the first ten minutes of a session are the hardest",
excerpt: "Almost everyone spends them apologising for not knowing where to start.",
date: "June 2026",
category: "Practice",
href: "/journal/first-ten-minutes",
image: { src: "/photos/lake.jpg", alt: "Morning mist lifting off a still lake" },
},
]}
labels={{ read: "Read" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
button | ActionButton | – | Pill action beside the heading |
posts | Post[] | [] | Post cards, three across from md |
labels | { read?: string } | {} | The read link's wording; the link is dropped when unset |
className | string | – | Extra classes for the outer <section> |
type Post = {
title: string;
excerpt: string;
date: string;
category: string;
href: string;
image: { src: string; alt: string };
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};motion-safe:, so the hover lift is dropped entirely for anyone who has asked for reduced motion, while the link itself still works.-8% to 8% against a 1.18 scale.blur(24px) on decode, with a complete check on mount so a cached photograph is not left blurred waiting for an event that already fired.0.12s stagger by index, resolving a row left to right.category and date are free strings printed either side of a dot, with no parsing or formatting, so "June 2026", an ISO date or a reading time all render as given.h3 under the section h2, which keeps the outline correct when this block sits below other sections on a page.blog69
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.
blog70
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.
blog57
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.
blog43
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 category label, a title, an excerpt, and byline.