diff --git a/components/news.tsx b/components/news.tsx index a468684..356c5d2 100644 --- a/components/news.tsx +++ b/components/news.tsx @@ -54,7 +54,7 @@ export function News() { if (status === 'loading' || loading) { return ( - + News @@ -68,7 +68,7 @@ export function News() { } return ( - + News - + {error ? (

{error}

) : ( @@ -92,28 +92,24 @@ export function News() { news.map((item) => (
window.open(item.url, '_blank')} > -
-
-
- {item.displayDate} - {item.category && ( - - {item.category} - - )} -
-

- {item.title} -

- {item.description && ( -

- {item.description} -

- )} -
+

+ {item.title} +

+ {item.description && ( +

+ {item.description} +

+ )} +
+ {item.displayDate} + {item.category && ( + + {item.category} + + )}
))