mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
* fix: update commitizen version * feat: add WASM build tags to db actions * feat: Update all actions to follow `AddAsset` for error handling * feat: remove database dependency in dwn and motr commands * feat: add basic info form to registration view * feat: implement basic browser navigation component * refactor: move database related files to middleware * fix: remove unused test command * fix: update source directory for buf-publish workflow * feat: embed dwn config data * feat: add Sync RPC to query service * refactor: rename package to for better organization * feat: add new javascript exception handling for server requests * refactor: move dwn.wasm to embed directory * refactor: move server files to a new directory * refactor: move session related code to client package * refactor: Update dwn.wasm build path * refactor: move dwn wasm build to vfs * feat: introduce config loading middleware * feat: introduce DWN config and address JSON * refactor: move dwn wasm build output to embed directory * feat: introduce config and IndexedDB model * refactor: move DWN config file generation to vfs * refactor: move config package to * feat: add Sonr.ID IPFS gateway proxy * feat: add SWT data structure * feat: update index.html to use Sonr styles and scripts * feat(dwn): remove index.html server endpoint * feat: add Navigator API for web credential management
63 lines
1.1 KiB
Templ
63 lines
1.1 KiB
Templ
package blocks
|
|
|
|
func H1(content string) templ.Component {
|
|
return renderText(1, content)
|
|
}
|
|
|
|
func H2(content string) templ.Component {
|
|
return renderText(2, content)
|
|
}
|
|
|
|
func H3(content string) templ.Component {
|
|
return renderText(3, content)
|
|
}
|
|
|
|
func Text(content string) templ.Component {
|
|
return renderText(0, content)
|
|
}
|
|
|
|
templ renderText(level int, text string) {
|
|
switch level {
|
|
case 1:
|
|
<h1 class="text-2xl lg:text-3xl font-bold pb-3">
|
|
{ text }
|
|
</h1>
|
|
case 2:
|
|
<h2 class="text-xl lg:text-2xl font-bold pb-2">
|
|
{ text }
|
|
</h2>
|
|
case 3:
|
|
<h3 class="text-md lg:text-xl font-semibold pb-1">
|
|
{ text }
|
|
</h3>
|
|
default:
|
|
<p class="text-base font-normal">
|
|
{ text }
|
|
</p>
|
|
}
|
|
}
|
|
|
|
templ renderLink(attrs templ.Attributes, text string) {
|
|
<a { attrs... }>
|
|
{ text }
|
|
</a>
|
|
}
|
|
|
|
templ renderStrong(attrs templ.Attributes, text string) {
|
|
<strong { attrs... }>
|
|
{ text }
|
|
</strong>
|
|
}
|
|
|
|
templ renderEmphasis(attrs templ.Attributes, text string) {
|
|
<em { attrs... }>
|
|
{ text }
|
|
</em>
|
|
}
|
|
|
|
templ renderCode(attrs templ.Attributes, text string) {
|
|
<code { attrs... }>
|
|
{ text }
|
|
</code>
|
|
}
|