import NotionIcon from '@/components/NotionIcon' import SmartLink from '@/components/SmartLink' import TagItem from './TagItem' import { siteConfig } from '@/lib/config' /** * 文章详情页说明信息 */ export default function PostInfo(props) { const { post } = props return (
{post?.type !== 'Page' && ( <> {post?.category} )}

{siteConfig('POST_TITLE_ICON') && } {post?.title}

{post?.type !== 'Page' && ( <> )}
) }