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

你好,我是 {siteConfig.name}

{siteConfig.tagline}

最新文章

所有文章 →
); }