package templates import "github.com/haydenhargreaves/Potion/internal/templates/components" templ servingIcon() { } templ timeIcon() { } templ starIcon(filled bool) { if filled { } else { } } templ RecipePage() { @components.Navbar("")

Easy Chicken Alfredo

Author: Hayden Hargreaves

Category: Dinner

@metadataSection()

About this recipe

A rich and creamy Classic Chicken Curry that's perfect for a comforting weeknight meal. Tender chicken pieces are simmered in a luscious, spiced sauce with a hint of coconut, making it an irresistible dish for the whole family. This recipe is designed to be straightforward, delivering authentic flavors without requiring extensive culinary expertise. Enjoy it with fluffy basmati rice or warm naan bread!

@ingredientList() @instructionList() @tagList()
} templ metadataSection() {
@timeIcon()

Prep: 20 min

Cook: 45 min

@starIcon(true) @starIcon(true) @starIcon(true) @starIcon(false) @starIcon(false)

Intermediate

@servingIcon()

Serves 4

} templ ingredientList() {

Ingredients


} templ instructionList() {

Instructions


} templ tagList() {

Tags



Created: January 2, 2025

Last Modified: February 14, 2025

} templ ingredientListItem(name, quantity string, odd bool) {
  • { quantity }: { name }
  • } templ instructionListItem(content string, num int) {
  • { num }

    { content }

  • } templ tagListItem(content string) {
  • { content }
  • }