diff --git a/src/app/page.tsx b/src/app/page.tsx index 5049e81..09dcb61 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,8 +13,10 @@ const upperCaseFirstLetter = (string: string) => string.charAt(0).toUpperCase() export default async function Home() { const tags = await prisma.tag.findMany({ where: { slug: { in: tagSlugs } } }) + const recipeCount = await prisma.recipe.count() const groupLoaders = tags.sort(bySlugPosition).map(async (tag) => { + const recipes = await prisma.recipe.findMany({ where: { tags: { @@ -47,7 +49,7 @@ export default async function Home() { Przepisy kulinarne

- Kolekcja 118 domowych przepisów na pyszne dania + Kolekcja {recipeCount} domowych przepisów na pyszne dania