package templates import "github.com/haydenhargreaves/Potion/internal/templates/components" templ userDetailsSection(name, email, url string) {

{ name }

{ email }

} templ logoutSection() {
} templ ProfilePage() { @components.Navbar(" profile")
@userDetailsSection("Hayden Hargreaves", "hhargreaves2006@gmail.com", "https://lh3.googleusercontent.com/a/ACg8ocLeT6ltjQIkiBy1MgMJDbQxtBfMVfn8sP4e1t7d0bCJeHFdpcea=s96-c") @logoutSection()
}