/* global React */
/* ============================================================
Insights — index + article template
============================================================ */
const { useEffect: iEffect, useState: iState, useMemo: iMemo } = React;
const INSIGHTS = [
{
slug: 'leaders-who-never-explain',
date: '2026 · Nov',
category: 'Composure',
kind: 'Field note',
title: 'The leaders who never explain themselves into a room.',
excerpt: 'They state the position once. They do not extend the case. The room does the work of catching up to them.',
mins: 6,
tone: 'warm',
},
{
slug: 'composure-compounds',
date: '2026 · Oct',
category: 'Identity',
kind: 'On record',
title: 'Why composure compounds. And what corrodes it.',
excerpt: 'Composure is the only leadership behaviour with returns to scale. The cost is that it is also the most expensive to repair once lost.',
mins: 8,
tone: 'cool',
},
{
slug: 'authority-not-borrowed',
date: '2026 · Sep',
category: 'Authority',
kind: 'Essay',
title: 'Authority not borrowed, but embodied. A working theory.',
excerpt: 'External authority can hide internal fragmentation for years, until a moment of real consequence asks it to hold. Often, it does not.',
mins: 11,
tone: 'warm',
},
{
slug: 'the-second-clause',
date: '2026 · Aug',
category: 'Composure',
kind: 'Field note',
title: 'The second clause is the leak.',
excerpt: 'A clean answer ends. A frayed answer adds. The frequency of your second clauses is the most accurate reading of where the pressure sits.',
mins: 4,
tone: 'cool',
},
{
slug: 'rooms-that-do-not-give',
date: '2026 · Jul',
category: 'Pressure',
kind: 'Essay',
title: 'On rooms that do not give.',
excerpt: 'A room that does not give is not hostile. It is honest. Most leaders learn how to read hostile rooms. Few learn how to read honest ones.',
mins: 9,
tone: 'warm',
},
{
slug: 'private-cost-of-public-composure',
date: '2026 · Jun',
category: 'Recovery',
kind: 'On record',
title: 'The private cost of public composure.',
excerpt: 'If nothing slips in the room, the question worth holding is what slips after. Composure without recovery is the longest, quietest tax in senior leadership.',
mins: 7,
tone: 'cool',
},
];
function getInsight(slug) {
return INSIGHTS.find((i) => i.slug === slug);
}
/* ============================================================
INSIGHTS INDEX
============================================================ */
function InsightsIndexPage() {
const router = useRouter();
const [filter, setFilter] = iState('All');
const cats = ['All', ...Array.from(new Set(INSIGHTS.map(i => i.category)))];
const items = filter === 'All' ? INSIGHTS : INSIGHTS.filter(i => i.category === filter);
const featured = items[0];
const rest = items.slice(1);
return (
{/* Header */}
Field notes · Essays · On record
Notes from the room.
Short, deliberate writing on identity, authority, and what the room actually reads. Published infrequently. Sent privately to a small list.
New field notes, sent the morning they are published. One read. No promotion. No automated sequence.
{!submitted ? (
) : (
Subscribed
You will hear from Daniel when the next note is published.
)}
);
}
/* ============================================================
ARTICLE TEMPLATE
============================================================ */
// Article bodies — sample-faithful prose. Each is keyed by slug.
const ARTICLE_BODIES = {
'leaders-who-never-explain': [
'Some leaders state a position once. They do not extend the case. They do not stack reasons. They put the position down on the table and they leave it there.',
'The first time you watch it, it reads as confidence. The second time, you realise it is something else. It is the absence of need.',
{ type: 'h2', text: 'The room catches up.' },
'Most senior leaders are trained, often unconsciously, to bring the room along. They explain. They contextualise. They pre-empt the question. The instinct is generous. It is also expensive.',
'A position that arrives with five reasons reads as five reasons. A position that arrives once, and stops, reads as a position.',
'The room does the work of catching up. The room actually likes doing that work. The room dislikes being pulled along.',
{ type: 'h2', text: 'What this is not.' },
'It is not refusal to explain. It is not theatre. It is not silence as strategy. Each of those is performance, and the room can tell.',
'It is the calibrated trust that what you said was sufficient. That you do not need to add to it. That the absence of the second clause is the message.',
{ type: 'pull', text: 'The frequency of your second clauses is the most accurate reading of where the pressure sits.' },
{ type: 'h2', text: 'A small practice.' },
'In your next senior conversation, count your second clauses. Not your sentences. Your second clauses. The "and also." The "what I mean is." The "to be clear."',
'Most leaders are surprised by the count. The count is the leak.',
],
'composure-compounds': [
'Composure is the only leadership behaviour with returns to scale. Strategy ages. Vision ages. Knowledge ages. Composure compounds.',
'Every senior decision is made twice. Once in the meeting, where the room is reading you, and once in the room\u2019s memory afterward, where the meeting is recalled by what you looked like more than by what you said.',
{ type: 'h2', text: 'The compounding.' },
'A leader who is composed in three rooms is read as composed by three rooms. The next room they enter has already inherited that reading. The pressure they walk into is structurally lower.',
'It is not optics. It is acoustics. Composure changes how loud the room has to be to be heard, which changes how loud the leader has to be to respond.',
{ type: 'h2', text: 'The corrosion.' },
'Composure is corroded in two directions. The first is acceleration. Tempo, pitch, breath. A composure that frays through pace.',
'The second is delay. Holding the room perfectly, paying the cost in the night. A composure that frays through privacy.',
'Both are common. Both are usually invisible to the leader, and increasingly visible to the room over time.',
{ type: 'pull', text: 'Composure without recovery is the longest, quietest tax in senior leadership.' },
],
'authority-not-borrowed': [
'External authority can hide internal fragmentation for years, until a moment of real consequence asks it to hold. Often, it does not.',
'This is the central observation underneath everything I work on. The room can read certainty in a leader who has not yet read it in themselves. The mismatch is invisible. Until it is not.',
{ type: 'h2', text: 'The two kinds of authority.' },
'Borrowed authority comes from role, from history, from the org chart, from the brand of the firm. It works. It works well. It works until the moment it is asked to do something it cannot.',
'Embodied authority comes from a structural alignment between the leader and the seat they occupy. The two are not the same person performing two parts. They are one person.',
{ type: 'h2', text: 'Why the difference shows up late.' },
'Most rooms do not test authority. Most rooms ratify it. The leader walks in, the room receives, the meeting proceeds. The structure underneath the authority is never stressed.',
'A moment of consequence stresses it. A board push-back. A founder revisiting a decision. A regulator. An IPO road show. A press conference that runs long.',
'Under stress, borrowed authority leaks. Embodied authority does not. The leak is the diagnostic.',
{ type: 'pull', text: 'A lighthouse does not chase ships. It does not move with the storm. It remains structurally aligned within itself.' },
{ type: 'h2', text: 'The work.' },
'The work is structural, not performative. It is not new language. It is not a new posture. It is the slow, deliberate alignment between identity and seat, until the two stop being distinguishable.',
'When that happens, authority stops being borrowed. The room reads it differently because it is different.',
],
'the-second-clause': [
'A clean answer ends. A frayed answer adds. The frequency of your second clauses is the most accurate reading of where the pressure sits.',
{ type: 'h2', text: 'Watch the next clause.' },
'When a senior leader is asked a hard question, listen for the comma. The comma is where the decision is made: end the answer, or extend it.',
'A leader who is settled ends. A leader under pressure extends. The pressure is rarely about the question. The pressure is about the leader\u2019s relationship to having spoken.',
{ type: 'pull', text: 'The frequency of your second clauses is the most accurate reading of where the pressure sits.' },
],
'rooms-that-do-not-give': [
'A room that does not give is not hostile. It is honest. Most leaders learn how to read hostile rooms. Few learn how to read honest ones.',
{ type: 'h2', text: 'The difference.' },
'A hostile room is performing scepticism. It has decided in advance. It is testing whether you will hold under pressure that is not actually being applied.',
'An honest room is not performing anything. It is reading you. It is making a decision based on what it sees. It does not telegraph its decision because it has not made it yet.',
{ type: 'h2', text: 'What rooms that do not give actually need.' },
'They do not need your case. They have read your case. They need the structural answer to a question they have not asked.',
'The question is: are you the one who will hold this when it gets harder than it is right now.',
],
'private-cost-of-public-composure': [
'If nothing slips in the room, the question worth holding is what slips after. Composure without recovery is the longest, quietest tax in senior leadership.',
{ type: 'h2', text: 'The pattern.' },
'The leader holds. The leader holds beautifully. The meeting ends. The leader walks out and the cost begins.',
'It shows up in sleep. It shows up in the first conversation of the next day, which inherits the unfinished business of the previous one. It shows up in the body, slowly, across years.',
{ type: 'h2', text: 'Why this is hard to see.' },
'Peers cannot see it. The room cannot see it. The leader themselves often cannot see it, because the cost is paid in a register that is not part of the meeting.',
'The people closest to the leader can see it. They rarely have the language for it. They name it after they leave.',
{ type: 'pull', text: 'The room is over when the room is over. Reclaim the night.' },
],
};
function InsightArticlePage({ slug }) {
const router = useRouter();
const insight = getInsight(slug);
const body = ARTICLE_BODIES[slug];
if (!insight) {
return (
Not found
This note has been retired.
);
}
// related = same category, different slug, max 2
const related = INSIGHTS.filter(i => i.category === insight.category && i.slug !== slug).slice(0, 2);
return (
{/* Article header */}
{insight.kind}{insight.date}{insight.category}
{insight.title}
{insight.excerpt}
Daniel Pledger
{insight.mins} min read
{/* Article body */}
{body && body.map((b, i) => {
if (typeof b === 'string') return
{b}
;
if (b.type === 'h2') return (
{b.text}
);
if (b.type === 'pull') return (
{b.text}
);
return null;
})}
{/* Sign-off */}
Continue
If the pattern in this note recognises something, the audit will read it.