import Link from 'next/link' import React from 'react' import CONFIG_HEXO from '../config_hexo' import { BlogPostCardInfo } from './BlogPostCardInfo' import BLOG from '@/blog.config' // import Image from 'next/image' const BlogPostCard = ({ index, post, showSummary, siteInfo }) => { const showPreview = CONFIG_HEXO.POST_LIST_PREVIEW && post.blockMap if (post && !post.pageCoverThumbnail && CONFIG_HEXO.POST_LIST_COVER_DEFAULT) { post.pageCover = siteInfo?.pageCoverThumbnail } const showPageCover = CONFIG_HEXO.POST_LIST_COVER && post?.pageCoverThumbnail && !showPreview // const delay = (index % 2) * 200 return (