import Footer from "@/app/components/Footer"; import { termsContent } from "@/app/data/mock"; export const metadata = { title: "服务条款 | 游牧中国", description: "游牧中国服务条款,了解使用平台的规定和条件。", }; export default function TermsPage() { return ( <> 服务条款 最后更新:{termsContent.lastUpdated} {termsContent.sections.map((section, index) => ( {section.title} {section.content.split('\n').map((line, i) => { if (line.trim() === '') return null; return ( {line} ); })} ))} > ); }
最后更新:{termsContent.lastUpdated}
{line}