import Image from 'next/image' import BLOG from '@/blog.config' import TagItem from './TagItem' import md5 from 'js-md5' export const ArticleInfo = (props) => { const { post } = props const emailHash = md5(BLOG.CONTACT_EMAIL) return
{post?.title}
{post?.type !== 'Page' && <> }
}