import Footer from "@/app/components/Footer"; import { privacyContent } from "@/app/data/mock"; export const metadata = { title: "隐私政策 | 游牧中国", description: "游牧中国隐私政策,了解我们如何保护您的个人信息。", }; export default function PrivacyPage() { return ( <>

隐私政策

最后更新:{privacyContent.lastUpdated}

{privacyContent.sections.map((section, index) => (

{section.title}

{section.content.split('\n').map((line, i) => { if (line.trim() === '') return null; return (

{line}

); })}
))}