package templates import "github.com/haydenhargreaves/Potion/internal/templates/components" import domain "github.com/haydenhargreaves/Potion/internal/domain/server" import domain_user "github.com/haydenhargreaves/Potion/internal/domain/user" templ userDetailsSection(user domain_user.User) {

{ user.Name }

{ user.Email }

10 recipes

14 favorites

} templ recipesSection() {

My Recipes

} templ favoritesSection() {

My Favorites

} templ activitySection() {

My Favorites

} templ recipeListItem() {
  • My Awesome Chili Recipe

    Difficulty: Medium

    Duration: 60 min

    Category: Dinner

    Tags: comfort food, spicy, beef

  • } templ activityListItem() {
  • Rated "Spicy Chicken Wings"

    2 days ago

  • } templ logoutSection() {
    Logout
    } templ ProfilePage(user domain_user.User) { @components.Navbar(" profile")
    @userDetailsSection(user) @recipesSection() @favoritesSection() @activitySection() @logoutSection()
    }