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