Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/magazine-bold. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
9 lines
240 B
Plaintext
9 lines
240 B
Plaintext
package main
|
||
|
||
// mbTextComponent renders a text run in Magazine Bold body cadence (Inter, 16–18px tight leading).
|
||
templ mbTextComponent(text string, class string) {
|
||
<div class={ "mb-body font-sans", class }>
|
||
@templ.Raw(text)
|
||
</div>
|
||
}
|