Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/pastel-dream. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
9 lines
276 B
Plaintext
9 lines
276 B
Plaintext
package main
|
|
|
|
// pastelTextComponent renders body text with Nunito at line-height 1.75.
|
|
templ pastelTextComponent(text, class string) {
|
|
<div class={ "font-body prose max-w-none", class } style="color: hsl(var(--foreground)); line-height: 1.75;">
|
|
@templ.Raw(text)
|
|
</div>
|
|
}
|