Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/brutalist. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
11 lines
329 B
Plaintext
11 lines
329 B
Plaintext
package main
|
|
|
|
templ brutalistTextComponent(text, class string) {
|
|
<div
|
|
class={ "brutalist-text", class }
|
|
style="font-family: var(--font-body, 'Inter', -apple-system, sans-serif); font-size: 1.0625rem; line-height: 1.7; color: hsl(var(--foreground)); max-width: 70ch; letter-spacing: 0.005em;"
|
|
>
|
|
@templ.Raw(text)
|
|
</div>
|
|
}
|