package components import "fmt" import "github.com/haydenhargreaves/Potion/internal/domain/recipe" import domainServer "github.com/haydenhargreaves/Potion/internal/domain/server" templ likeButton() { } templ RecipeCardSmall(recipe domain.Recipe) {

{ recipe.Title }

Serves { recipe.Serves }

{ recipe.Category } - { recipe.Duration.Total } mins

if recipe.Favorite { @likeButton() }
} templ ContentCardSmall(content, target string) {

{ content }

} // TODO: Implement this using a recipe type parameter! templ RecipeCardLarge(liked bool) {

Avocado Toast

Hayden Hargreaves

Avocado toast is a delicious and simple breakfast, snack or light meal! Learn how to make the BEST avocado toast with this recipe, plus fun variations. Avocado toast is a delicious and simple breakfast, snack or light meal! Learn how to make the BEST avocado toast with this recipe, plus fun variations. Avocado toast is a delicious and simple breakfast, snack or light meal! Learn how to make the BEST avocado toast with this recipe, plus fun variations.

Breakfast - 15 min

if liked { @likeButton() }
}