Files
tuhui.cloud/frontend/src/pages/Copyright.jsx
2026-03-08 19:28:32 +08:00

77 lines
3.1 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { useNavigate } from 'react-router-dom';
import Header from '../components/Header';
import Footer from '../components/Footer';
import './Protocol.css';
const Copyright = () => {
const navigate = useNavigate();
return (
<div className="protocol-page" style={{ paddingTop: '70px' }}>
<Header />
<div className="protocol-container">
<div className="protocol-sidebar">
<h3>相关协议</h3>
<ul>
<li><a onClick={() => navigate('/protocol')}>网站协议</a></li>
<li><a onClick={() => navigate('/pay-protocol')}>支付协议</a></li>
<li><a onClick={() => navigate('/copyright')} className="active">版权声明</a></li>
<li><a onClick={() => navigate('/help')}>帮助中心</a></li>
<li><a onClick={() => navigate('/upload-guide')}>供稿必读</a></li>
</ul>
</div>
<div className="protocol-content">
<h1>版权声明</h1>
<h2>CC共享版权授权协议</h2>
<p>"知识共享"Creative Commons简称CC是一种版权授权协议的统称</p>
<div className="highlight-box">
<h3>CC-BY-NC 授权协议</h3>
<p><strong>署名-非商业性使用BY-NC</strong>使</p>
</div>
<h2>版权保护声明</h2>
<p>图汇作为网络服务平台十分重视版权及知识产权保护向用户传达版权保护理念</p>
<p><strong>1. 供稿设计师责任</strong></p>
<p>须进行实名登记上传身份证和手机号码验证对身份真实性和作品版权负责</p>
<p><strong>2. 平台审查机制</strong></p>
<p>图汇对作品进行严格审查提示设计师遵守法律法规不得上传侵权作品</p>
<p><strong>3. 违规处理</strong></p>
<p>对上传侵权作品的设计师平台有权进行处罚侵权行为造成的损失由设计师承担</p>
<p><strong>4. 侵权处置</strong></p>
<p>对明显侵权违法内容图汇有权不事先通知直接删除</p>
<p><strong>5. 使用范围</strong></p>
<p>用户下载作品应在学习交流分享范围内使用不得用于商业目的</p>
<p><strong>6. 严禁二次销售</strong></p>
<div className="warning-box">
<p> 严格保护平台设计师作品未经授权禁止转载作品到第三方网站进行二次销售一经发现立即封号依法追究法律责任</p>
</div>
<h2>侵权投诉</h2>
<p>若您的权益被侵害请发送邮件联系我们</p>
<p><strong>service@aishej.com</strong></p>
<p>工作人员会尽快处理请您耐心等待</p>
<div className="protocol-footer">
<p>本声明最后更新日期2026年1月10日</p>
</div>
</div>
</div>
<Footer />
</div>
);
};
export default Copyright;