refactor: enhance blog functionality with related blogs fetching, improved loading states, and tag filtering

This commit is contained in:
hamed
2025-11-19 11:32:09 +03:30
parent 235a64c378
commit e26d342c90
10 changed files with 251 additions and 130 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ function Detail({ data }) {
<div className="w-full lg:w-[68%]">
<Caption data={data} />
<SocialMedia />
<CommentUser data={data} loading={false} />
{/* <CommentUser data={data} loading={false} /> */}
</div>
);
}