import BLOG from '@/blog.config' import Link from 'next/link' import CONFIG_SIMPLE from '../config_simple' export const BlogItem = props => { const { post } = props return

{post.title}

{BLOG.AUTHOR} - {post.date?.start_date || post.createdTime} {post.category && - {post.category}} {post.tags && post.tags?.length > 0 && post.tags.map(t => / {t})}
{post.summary} {post.summary && ...}
Continue Reading
}