diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx index cd6cd94..2f5ad3a 100644 --- a/client/src/pages/home.tsx +++ b/client/src/pages/home.tsx @@ -188,12 +188,17 @@ function TopStoriesList({ articles }: { articles: Article[] }) {
{articles.slice(0, 5).map((article) => ( -
-
- {article.category} - {timeAgo(new Date(article.publishedAt))} +
+
+ {article.title} +
+
+
+ {article.category} + {timeAgo(new Date(article.publishedAt))} +
+

{article.title}

-

{article.title}

))}