Matthew Stobbs
9c35be1fcf
- made multiple components for reuse in templ - going to start on actual data displaying templates
16 lines
283 B
Plaintext
16 lines
283 B
Plaintext
package components
|
|
|
|
templ A(href string, text string) {
|
|
<a href={ templ.URL(href) }
|
|
class={
|
|
"after:content-link",
|
|
"after:w-3",
|
|
"after:h-3",
|
|
"after:inline-block",
|
|
"after:invert",
|
|
"text-base",
|
|
"text-morbius-100" }>
|
|
{ text }
|
|
</a>
|
|
}
|