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 (

技术博客

); }