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 (

客户案例

); }