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>
13 lines
532 B
Plaintext
13 lines
532 B
Plaintext
package main
|
|
|
|
templ brutalistButtonComponent(text, href string) {
|
|
<a
|
|
href={ templ.SafeURL(href) }
|
|
class="brutalist-btn"
|
|
data-brutalist-btn
|
|
style="display: inline-flex; align-items: center; padding: 0.75rem 1.5rem; font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; background-color: transparent; color: hsl(var(--foreground)); border: 1px solid hsl(var(--border)); border-radius: 0; text-decoration: none;"
|
|
>
|
|
{ text }
|
|
</a>
|
|
}
|