import BLOG from '@/blog.config' import Image from 'next/image' import Link from 'next/link' import React from 'react' import CONFIG_FUKA from '../config_fuka' import Card from './Card' const BlogCard = ({ post, showSummary }) => { const showPreview = CONFIG_FUKA.POST_LIST_PREVIEW && post.blockMap return (
{post.title} {(!showPreview || showSummary) &&

{post.summary}

}
{CONFIG_FUKA.POST_LIST_COVER && post?.page_cover && (
{post.title}
)}
) } export default BlogCard