mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
* refactor: remove indexedDB dependency and replace with browser filesystem * refactor: remove unused layout templating from global block * feat: add support for building from source * feat: add Credential creation and retrieval via Dexie database * feat: add breadcrumbs component
18 lines
335 B
Templ
18 lines
335 B
Templ
package views
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/onsonr/sonr/internal/dwn/front/blocks"
|
|
)
|
|
|
|
func ProfileView(c echo.Context) error {
|
|
return echoComponentResponse(c, renderProfileView())
|
|
}
|
|
|
|
templ renderProfileView() {
|
|
@blocks.Card("profile-view", blocks.SizeLarge) {
|
|
@blocks.ProfileCard()
|
|
@blocks.Tabs()
|
|
}
|
|
}
|