import BLOG from '@/blog.config' import LazyImage from '@/components/LazyImage' import Link from 'next/link' /** * 文章详情页介绍 * @param {*} props * @returns */ export default function ArticleInfo(props) { const { post, siteInfo } = props return (<> {/* title */}

{post?.title}

{/* meta */}
{post?.publishDay} | {post?.lastEditedDay}
{BLOG.AUTHOR}
) }