import Link from "next/link"; import type { Metadata } from "next"; import { getBlogList } from "@/services/blog.service"; export const metadata: Metadata = { title: "技术博客", }; export default async function BlogListPage() { const posts = await getBlogList().catch(() => []); return (
{post.intro}
}暂无文章,或后端服务未连接。
)}