Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/y2k. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
10 lines
254 B
Plaintext
10 lines
254 B
Plaintext
package main
|
|
|
|
// y2kTextComponent wraps prose in the y2k-text container so links pick up the
|
|
// holographic underline gradient.
|
|
templ y2kTextComponent(text, class string) {
|
|
<div class={ "y2k-text prose max-w-none", class }>
|
|
@templ.Raw(text)
|
|
</div>
|
|
}
|