diff --git a/src/routes/shopping-list/+page.svelte b/src/routes/shopping-list/+page.svelte new file mode 100644 index 0000000..46368c2 --- /dev/null +++ b/src/routes/shopping-list/+page.svelte @@ -0,0 +1,49 @@ + + +
+

Einkaufsliste

+ {#if snapshot.recipes.length > 0} +

+ {snapshot.uncheckedCount} noch zu besorgen · {snapshot.recipes.length} Rezept{snapshot.recipes.length === 1 ? '' : 'e'} im Wagen +

+ {/if} +
+ +{#if loading} +

Lädt …

+{:else if snapshot.recipes.length === 0} +
+
+

Einkaufswagen ist leer.

+

Lege Rezepte auf der Wunschliste in den Wagen, um sie hier zu sehen.

+
+{/if} + +