From 162df3406a7dcfa0a47bd186f66f55b921391ead Mon Sep 17 00:00:00 2001 From: Krishni Date: Tue, 26 May 2026 11:43:05 +0530 Subject: [PATCH] Improve author section styling on blogs page --- src/pages/blogs/index.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/blogs/index.tsx b/src/pages/blogs/index.tsx index 6a5621aa..ad1e6ff6 100644 --- a/src/pages/blogs/index.tsx +++ b/src/pages/blogs/index.tsx @@ -339,8 +339,9 @@ const BlogCard = ({ blog }: { blog: (typeof blogs)[number] }) => { className="card-author-handle" target="_blank" rel="noopener noreferrer" + title={author.name} > - {author.name} + @{author.id || author.name.toLowerCase().replace(/\s+/g, "")} ))} @@ -360,4 +361,4 @@ const BlogCard = ({ blog }: { blog: (typeof blogs)[number] }) => { ); -}; \ No newline at end of file +};