Files
sonr/pkg/nebula/components/profile/view.templ
T

16 lines
282 B
Templ
Raw Normal View History

2024-10-01 14:42:11 -04:00
package profile
2024-09-22 02:51:52 -04:00
import (
"github.com/labstack/echo/v4"
2024-09-29 14:40:36 -04:00
"github.com/onsonr/sonr/pkg/nebula/components/blocks"
2024-09-22 02:51:52 -04:00
)
2024-10-01 14:42:11 -04:00
templ View(c echo.Context) {
@blocks.Layout("Sonr.ID", true) {
@blocks.Card("profile-view", blocks.SizeLarge) {
@blocks.ProfileCard()
@blocks.Tabs()
}
2024-09-22 02:51:52 -04:00
}
}