diff --git a/src/components/BlogPostCard.tsx b/src/components/BlogPostCard.tsx index 71d501b3..7c338a1b 100644 --- a/src/components/BlogPostCard.tsx +++ b/src/components/BlogPostCard.tsx @@ -32,7 +32,7 @@ const BlogPostCard: React.FC = ({ post, href, level, readingP
{post.image ? ( @@ -52,7 +52,37 @@ const BlogPostCard: React.FC = ({ post, href, level, readingP {post.summary && (

{post.summary}

)} -
+ + {/* Reading progress indicator - replaces the dividing line */} + {readingProgress !== undefined && readingProgress > 0 ? ( +
+
+
+ ) : ( +
+ )} + +
{displayName} @@ -63,31 +93,6 @@ const BlogPostCard: React.FC = ({ post, href, level, readingP
- - {/* Reading progress indicator */} - {readingProgress !== undefined && readingProgress > 0 && ( -
-
-
- )} ) }