+ {filteredRecipes.length === 0 ? (
+
No recipes found matching your search
+ ) : (
+ filteredRecipes.map((recipe) => (
+
+
+
+
{recipe.name}
+
+
+ {recipe.icon.length > 0 ?

: null }
+
+
+
+
+
+ {recipe.description}
+
+
+
+
+
+
+
+ {recipe.features.backups.toLowerCase().includes("yes") ? Backups : null}
+ {recipe.features.healthcheck.toLowerCase().includes("yes") ? Healthcheck : null}
+ {recipe.category.length > 0 ? {recipe.category} : null}
+
+
+ ))
+ )}
+
+ {selectedRecipe && (
+
+ Showing {filteredRecipes.length} of {allRecipes.length} apps
+
+