From 4451c95bf763319cb08c23f0a3cd927475a595dc Mon Sep 17 00:00:00 2001 From: june Date: Wed, 13 Aug 2025 07:57:18 +1200 Subject: [PATCH] ok enough work on the cards i should do the actual ticket work now (but it is working real well) --- src/components/Card/OverviewCard.astro | 8 +++++++- src/components/Card/TagRow.astro | 8 ++++---- src/pages/index.astro | 4 +--- 3 files changed, 12 insertions(+), 8 deletions(-) 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 => ( - - - + )) }