diff --git a/components/static/List.tsx b/components/static/List.tsx
index d15d2b4..11697d7 100644
--- a/components/static/List.tsx
+++ b/components/static/List.tsx
@@ -36,101 +36,103 @@ const List: React.FC = () => {
const { posts, meta } = data.posts;
return (
-
-
- {t(meta.pagination.total == 1 ? 'article-found' : 'articles-found', {
- count: meta.pagination.total,
- })}
-
-
- {posts.map((post, index) => (
- -
-
- {/* Image */}
-
-
-
- {/* Title, description & org */}
-
-
- {/* eslint-disable-next-line */}
+
+
+
+ {t(meta.pagination.total == 1 ? 'article-found' : 'articles-found', {
+ count: meta.pagination.total,
+ })}
+
+
+ {posts.map((post, index) => (
+ -
+
+ {/* Image */}
+
+
+
+ {/* Title, description & org */}
+
+
+ {/* eslint-disable-next-line */}
-
- {post.title}
-
-
- {post.excerpt}
-
-
-
-
-
-
-
-
- {post.readingTime} min read
-
-
-
-
-
- {timeago.format(post.published)}
-
+
+ {post.title}
+
+
+ {post.excerpt}
+
+
+
+
+
+
+
+
+ {post.readingTime} min read
+
+
+
+
+
+ {timeago.format(post.published)}
+
+
-
-
- ))}
-
-
-
null}
- onPageChange={handlePageChange}
- initAtPage={initialPage}
- />
+
+ ))}
+
+
+
null}
+ onPageChange={handlePageChange}
+ initAtPage={initialPage}
+ />
+
);