feat: Phase 1-3 全部完成 — 沙盒增强、学情分析、学习路径
This commit is contained in:
@@ -0,0 +1,79 @@
|
||||
import type { Metadata } from 'next';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: '隐私政策 - 宇之然',
|
||||
description: '宇之然 AI 学习与实践平台隐私政策',
|
||||
};
|
||||
|
||||
export default function PrivacyPage() {
|
||||
return (
|
||||
<div className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
|
||||
<h1 className="text-3xl font-bold text-foreground mb-8">隐私政策</h1>
|
||||
<p className="text-sm text-muted-foreground mb-8">最后更新日期:2025 年 1 月</p>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold text-foreground mb-3">一、信息收集</h2>
|
||||
<p className="text-muted-foreground leading-relaxed mb-3">
|
||||
我们收集您在使用平台时主动提供的信息,包括但不限于:
|
||||
</p>
|
||||
<ul className="list-disc pl-6 text-muted-foreground leading-relaxed space-y-1">
|
||||
<li>注册账户时提供的邮箱地址、用户名和密码</li>
|
||||
<li>使用 AI 沙盒时输入的提示词和对话内容</li>
|
||||
<li>购买课程或服务时提供的订单信息</li>
|
||||
<li>您通过客服渠道提交的问题和反馈</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold text-foreground mb-3">二、信息使用</h2>
|
||||
<p className="text-muted-foreground leading-relaxed mb-3">我们收集的信息用于以下目的:</p>
|
||||
<ul className="list-disc pl-6 text-muted-foreground leading-relaxed space-y-1">
|
||||
<li>提供、维护和改进平台服务</li>
|
||||
<li>处理订单和完成支付交易</li>
|
||||
<li>发送服务通知和更新信息</li>
|
||||
<li>优化 AI 模型回复质量(匿名化处理后)</li>
|
||||
<li>检测和防止滥用行为</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold text-foreground mb-3">三、信息保护</h2>
|
||||
<p className="text-muted-foreground leading-relaxed">
|
||||
我们采用符合行业标准的安全措施保护您的个人信息,包括 SSL/TLS 加密传输、数据存储加密、访问权限控制等。但请注意,互联网上的数据传输不能保证 100% 的安全。
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold text-foreground mb-3">四、信息共享</h2>
|
||||
<p className="text-muted-foreground leading-relaxed">
|
||||
我们不会将您的个人信息出售给第三方。我们可能在以下情况下共享您的信息:获得您的明确同意、法律要求、保护我们的合法权益、与为我们提供服务的可信合作伙伴共享(如支付处理商)。
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold text-foreground mb-3">五、Cookie 使用</h2>
|
||||
<p className="text-muted-foreground leading-relaxed">
|
||||
我们使用必要的 Cookie 来维持网站正常运行和用户登录状态。您可以在浏览器设置中管理 Cookie 偏好。
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold text-foreground mb-3">六、您的权利</h2>
|
||||
<p className="text-muted-foreground leading-relaxed mb-3">您有权:</p>
|
||||
<ul className="list-disc pl-6 text-muted-foreground leading-relaxed space-y-1">
|
||||
<li>访问和查看我们持有的您的个人信息</li>
|
||||
<li>请求更正不准确的信息</li>
|
||||
<li>请求删除您的账户和相关数据</li>
|
||||
<li>随时撤回同意</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold text-foreground mb-3">七、联系我们</h2>
|
||||
<p className="text-muted-foreground leading-relaxed">
|
||||
如您对隐私政策有任何疑问,请通过 contact@yuzhiran.com 与我们联系。
|
||||
</p>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user