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 (

解决方案

); }