From 5798df9941080e5d6f718ee67f33a4fee5e4d40c Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Wed, 16 Jul 2025 22:33:13 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8feature:=20Move=20prompt=20to=20detail?= =?UTF-8?q?s=20element=20and=20notes=20to=20description?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/PromptCard.astro | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/components/PromptCard.astro b/src/components/PromptCard.astro index cfd4903..a1aa718 100644 --- a/src/components/PromptCard.astro +++ b/src/components/PromptCard.astro @@ -23,7 +23,7 @@ const formatDate = (dateStr: string | undefined) => { }; --- -
+

{title}

{
-

{description}

+

{notes}

{tags.map((tag: string) => ( - {tag} + {tag} ))}
View Details -
-

Created: {formatDate(created_at)} • Updated: {formatDate(updated_at)}

-

📝 {notes}

+
+

Prompt

+

{description}

+
+

Created: {formatDate(created_at)} • Updated: {formatDate(updated_at)}