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

你好,我是 {siteConfig.name}

這裡是我的個人首頁與技術 Blog。

最新文章

所有文章 →
); }