diff --git a/src/components/LatestInHashtag.tsx b/src/components/LatestInHashtag.tsx index 26dc180..1a7a4a6 100644 --- a/src/components/LatestInHashtag.tsx +++ b/src/components/LatestInHashtag.tsx @@ -20,20 +20,20 @@ export function LatestInHashtag({ hashtag, icon }: LatestInHashtagProps) { // Loading state if (isLoading) { return ( -
-
- {icon || } +
+
+ {icon || }
- - + +
-
- {[1, 2, 3].map((i) => ( +
+ {[1, 2, 3, 4, 5, 6].map((i) => ( - + - + @@ -52,25 +52,23 @@ export function LatestInHashtag({ hashtag, icon }: LatestInHashtagProps) { const hasMore = posts.length > INITIAL_POSTS_COUNT; return ( -
+
{/* Section Header */} -
-
- {icon || } -
-

- Latest in #{hashtag} -

-

- {posts.length} {posts.length === 1 ? 'article' : 'articles'} -

-
+
+ {icon || } +
+

+ Latest in #{hashtag} +

+

+ {posts.length} {posts.length === 1 ? 'article' : 'articles'} in this category +

{hasMore && (
{/* Posts Grid */} -
+
{visiblePosts.map((post) => ( - + ))}