diff --git a/src/components/Card/OverviewCard.astro b/src/components/Card/OverviewCard.astro index c2106b0..4f6cb94 100644 --- a/src/components/Card/OverviewCard.astro +++ b/src/components/Card/OverviewCard.astro @@ -14,7 +14,7 @@ const image = await client.files.getURL(headerImage, headerImage.image) src={ image } /> -
+

{recipe.name}

{recipe.description}

@@ -22,4 +22,10 @@ const image = await client.files.getURL(headerImage, headerImage.image)
+ + + + + + \ No newline at end of file diff --git a/src/components/Card/TagRow.astro b/src/components/Card/TagRow.astro index 86b071c..af56aec 100644 --- a/src/components/Card/TagRow.astro +++ b/src/components/Card/TagRow.astro @@ -22,12 +22,12 @@ const tags = tagIds && tagIds.length > 0
{ tags.map(tag => ( - // no hover:bg-white/30 :( - {tag.name} - + )) }
diff --git a/src/pages/index.astro b/src/pages/index.astro index babca22..5492b5f 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -12,9 +12,7 @@ const recipies = await client.collection("recipes").getFullList()
{ recipies.map(r => ( - - - + )) }