import Link from "next/link"; import type { Metadata } from "next"; import { getSolutionList } from "@/services/solution.service"; export const metadata: Metadata = { title: "解决方案", }; export default async function SolutionListPage() { const solutions = await getSolutionList().catch(() => []); return (
{solution.industry}
)} {solution.summary && ({solution.summary}
)}暂无解决方案,或后端服务未连接。
)}