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

16 lines
299 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-10-07 10:20:14 -04:00
"github.com/onsonr/sonr/pkg/nebula/global/styles"
"github.com/onsonr/sonr/pkg/nebula/global/ui"
2024-09-22 02:51:52 -04:00
)
2024-10-01 14:42:11 -04:00
templ View(c echo.Context) {
2024-10-07 10:20:14 -04:00
@styles.Layout("Sonr.ID", true) {
@ui.Card("profile-view", styles.SizeLarge) {
@ui.ProfileCard()
}
2024-09-22 02:51:52 -04:00
}
}