Files
sonr/pkg/nebula/views/profile.templ
T

19 lines
329 B
Templ
Raw Normal View History

2024-09-14 12:47:25 -04:00
package views
import (
"github.com/labstack/echo/v4"
2024-09-21 21:42:51 -04:00
"github.com/onsonr/sonr/pkg/nebula/blocks"
2024-09-14 12:47:25 -04:00
)
func ProfileView(c echo.Context) error {
return echoComponentResponse(c, renderProfileView())
}
templ renderProfileView() {
2024-09-18 02:22:17 -04:00
@blocks.Card("profile-view", blocks.SizeLarge) {
@blocks.ProfileCard()
@blocks.Tabs()
2024-09-14 12:47:25 -04:00
}
}