+
+ {item.title}
+
+
+ {item.type === 'blog' && (
+
+ {item.formattedDate && (
+
+ )}
+ {item.authors && item.authors.length > 0 && (
+
+ {item.authors.map((author, i) => (
+
+ {i > 0 && ', '}
+ {author.name}
+
+ ))}
+
+ )}
+ {item.readingTime && (
+
+ {Math.ceil(item.readingTime)} min read
+
+ )}
+
+ )}
+
+ {item.description && (
+ {item.description}
+ )}
+
+ {item.tags && item.tags.length > 0 && (
+
+ {item.tags.map((tag, i) => (
+
+ {tag.label}
+
+ ))}
+
+ )}
+