import Link from 'next/link'; import { getAllPostsSorted } from '@/lib/posts'; import { siteConfig } from '@/lib/config'; import { Hero } from '@/components/hero'; import { PostCard } from '@/components/post-card'; export default function HomePage() { const posts = getAllPostsSorted().slice(0, siteConfig.postsPerPage); return (

最新文章

所有文章 →
{posts.map((post) => ( ))}
); }