From 3b40b61013f45a73ce2f45a4646399650e897a04 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Wed, 4 Sep 2024 18:25:36 +0100 Subject: [PATCH] Add project started count --- src/components/Projects/ProjectCard.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/Projects/ProjectCard.tsx b/src/components/Projects/ProjectCard.tsx index c66f085b3..7d6b9d8ed 100644 --- a/src/components/Projects/ProjectCard.tsx +++ b/src/components/Projects/ProjectCard.tsx @@ -33,9 +33,11 @@ export function ProjectCard(props: ProjectCardProps) { /> - {frontmatter.title} - {frontmatter.description} - + + {frontmatter.title} + {frontmatter.description} + + {userCount > 0 ? <>{userCount} Started : <>Be the first to solve!}