feat: Phase 1-3 全部完成 — 沙盒增强、学情分析、学习路径
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
import type { Metadata } from 'next';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: '服务协议 - 宇之然',
|
||||
description: '宇之然 AI 学习与实践平台服务协议',
|
||||
};
|
||||
|
||||
export default function TermsPage() {
|
||||
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">
|
||||
宇之然 AI 平台(以下简称"本平台")由北京宇之然科技中心运营,提供 AI 课程学习、提示词库、AI 工具评测、AI 沙盒实践等服务。使用本平台即表示您同意本协议的全部条款。
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold text-foreground mb-3">二、用户账户</h2>
|
||||
<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 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>
|
||||
<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">
|
||||
本平台上的所有内容,包括课程材料、提示词库、工具评测等,均受著作权法保护。
|
||||
未经书面许可,不得转载、复制或用于商业用途。用户提交的内容,其知识产权归用户所有,
|
||||
但授予本平台在平台内展示和使用的许可。
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold text-foreground mb-3">五、付费服务</h2>
|
||||
<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">
|
||||
AI 沙盒提供的回复由人工智能模型生成,仅供参考,不构成专业建议。
|
||||
本平台不对 AI 生成内容的准确性、完整性或实用性作出保证。
|
||||
用户应自行判断和验证 AI 输出内容的可靠性。
|
||||
</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">八、联系我们</h2>
|
||||
<p className="text-muted-foreground leading-relaxed">
|
||||
如有任何疑问,请联系 contact@yuzhiran.com。
|
||||
</p>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user