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

{post?.title}

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