import BLOG from '@/blog.config'
import Link from 'next/link'
export const BlogItem = props => {
const { post } = props
console.log(post)
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
}