Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/scifi-clean. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
9 lines
299 B
Plaintext
9 lines
299 B
Plaintext
package main
|
|
|
|
// scifiTextComponent renders Inter body copy with the tabular-nums numeral treatment.
|
|
templ scifiTextComponent(text, class string) {
|
|
<div class={ "scifi-body prose max-w-none text-foreground tabular-nums", class } style="font-family: var(--font-body);">
|
|
@templ.Raw(text)
|
|
</div>
|
|
}
|