đŸŊī¸ Configure Day Plan

đŸĨ˜ Meal Preferences for @Model.DayOfWeek
Choose a main ingredient to focus the meal around
Comma-separated list of ingredients that must be included
Comma-separated list of ingredients to avoid
@if (Model.SuggestedRecipes != null && Model.SuggestedRecipes.Any()) {
Choose from recipes that match your preferences
}
â†Šī¸ Back to Week Plan
📊 Week Overview

Day: @Model.DayOfWeek

Date: @Model.Date.ToString("MMM dd, yyyy")

@if (!string.IsNullOrEmpty(Model.SelectedMainIngredient)) {

Main Ingredient: @Model.SelectedMainIngredient

} @if (Model.SuggestedRecipes != null && Model.SuggestedRecipes.Any()) {

Available Recipes: @Model.SuggestedRecipes.Count

}
💡 Tips
  • Choose a main ingredient to see relevant recipes
  • Add ingredients to avoid (allergies, dislikes)
  • Specify required ingredients for specific dishes
  • Use "Random Recipe" for variety in your week
@if (Model.SuggestedRecipes != null && Model.SuggestedRecipes.Any()) {
đŸŊī¸ Recipe Suggestions
@foreach (var recipe in Model.SuggestedRecipes.Take(5)) {
@recipe.Title @if (!string.IsNullOrEmpty(recipe.Time)) { @recipe.Time min }
} @if (Model.SuggestedRecipes.Count > 5) { ... and @(Model.SuggestedRecipes.Count - 5) more }
}