/* eslint-disable @next/next/no-img-element */ import { siteConfig } from '@/lib/config' import Link from 'next/link' import CONFIG from '../config' /** * 博文列表 * @param {*} param0 * @returns */ export const Blog = ({ posts }) => { return ( <> {/* */}
{/* 区块标题文字 */}
{siteConfig('STARTER_BLOG_TITLE', null, CONFIG)}

{siteConfig('STARTER_BLOG_TEXT_1', null, CONFIG)}

{/* 博客列表 此处优先展示3片文章 */}
{posts?.map((item, index) => { return (
{item.title}
{item.publishDay}

{item.title}

{item.summary}

) })}
{/* */} ) }