You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Convert the simple blog-website in lesson-04/remix-site into a simple recipe website:
Replace all instances of "Remix Blog" with "Remixed Recipes"
Change the meta description and keywords to describe a recipe site
Replace all instances of "post"/"posts" with "recipe"/"recipes" (also in your routing and in your "database" content — but beware of form method attributes and CSS classes, which you shouldn't change)
Add an "ingredients" property to each item in your db JSON file, which is an array of ingredients as text strings. Then map over this array to display the ingredients in a <ul> on the recipe permalink page, between the title and the body. Add an H2 header called "Ingredients" above the list, and an H2 header called "Description" above the body.
Add an input field for "ingredients" on the new-recipe-form and ensure that it saves the ingredients as an array of text strings to the "database".
If you're done early:
Improve the site — the above version is super basic, there are many features that could be added, and UX that could be improved, don't hold back!
The text was updated successfully, but these errors were encountered:
Convert the simple blog-website in
lesson-04/remix-site
into a simple recipe website:<ul>
on the recipe permalink page, between the title and the body. Add an H2 header called "Ingredients" above the list, and an H2 header called "Description" above the body.If you're done early:
The text was updated successfully, but these errors were encountered: