import React from 'react' import Link from 'next/link' import { useGlobal } from '@/lib/global' import BLOG from '@/blog.config' /** * 展示文章推荐 */ const RecommendPosts = ({ recommendPosts }) => { if (!BLOG.widget?.showRelatePosts || !recommendPosts || recommendPosts.length < 1) { return <> } const { locale } = useGlobal() return (
{locale.COMMON.RELATE_POSTS} :
) } export default RecommendPosts