import Link from "next/link"; import type { Metadata } from "next"; import { getCaseStudyList } from "@/services/case.service"; export const metadata: Metadata = { title: "客户案例", }; export default async function CaseStudyListPage() { const caseStudies = await getCaseStudyList().catch(() => []); return (
{item.client_name} {item.industry ? ` · ${item.industry}` : ""}
{item.summary && ({item.summary}
)}暂无案例,或后端服务未连接。
)}