package templates import "github.com/haydenhargreaves/Potion/internal/templates/components" import "github.com/haydenhargreaves/Potion/internal/domain/user" templ userDetailsSection(user domain.User) { { user.Name } { user.Email } } templ logoutSection() { Logout } templ ProfilePage(user domain.User) { @components.Navbar(" profile")
{ user.Email }