Aside

When to use
Drop a single Aside at the end of a major section to summarize the one-sentence takeaway. The component has no props — just children.
Example
import Aside from '../../components/widgets/Aside.astro';
<Aside>
Per-token entropy tracks ablation severity almost perfectly — but only
on in-distribution prompts.
</Aside>
Props
None. The component renders its slot inside a styled <div class="aside">.
When not to use
- Multiple in a row. One per major section, maximum.
- For a multi-sentence explanation. Use a paragraph.
- For a side-note. Use parentheses or a footnote.
- For a warning or callout with semantics. Use a styled
<blockquote>or an admonition component.