diff --git a/components/news.tsx b/components/news.tsx index 69a73ca..101571f 100644 --- a/components/news.tsx +++ b/components/news.tsx @@ -109,25 +109,23 @@ export function News() { className="p-2 rounded-lg bg-white shadow-sm hover:shadow-md transition-all duration-200 border border-gray-100" onClick={() => window.open(item.url, '_blank')} > -
-
-

- {item.title} -

-
- {formatDate(item.date)} - {item.category && ( - - {item.category} - - )} -
- {item.description && ( -

- {item.description} -

+
+

+ {item.title} +

+
+ {formatDate(item.date)} + {item.category && ( + + {item.category} + )}
+ {item.description && ( +

+ {item.description} +

+ )}
))