返回 AiToEarn
DataProtectionContent.tsx
根目录 / project / aitoearn-web / src / app / [lng] / websit / data-protection-agreement / DataProtectionContent.tsx
1 /**
2 * DataProtectionContent - 数据保护协议内容组件
3 * 客户端组件,包含 Header 组件和页面内容
4 */
5 'use client'
6
7 import { useTransClient } from '@/app/i18n/client'
8 import styles from '../websit.module.scss'
9
10 // 导入首页的Header组件
11 function Header() {
12 const { t } = useTransClient('home')
13
14 return (
15 <header className={styles.header}>
16 <div className={styles.headerContainer}>
17 <div className={styles.logo}>
18 <span className={styles.logoText}>{t('header.logo')}</span>
19 </div>
20 <nav className={styles.nav}>
21 <a href="#marketplace" className={styles.navLink}>
22 {t('header.nav.marketplace')}
23 </a>
24 <a href="#pricing" className={styles.navLink}>
25 {t('header.nav.pricing')}
26 </a>
27 <a href="#docs" className={styles.navLink}>
28 {t('header.nav.docs')}
29 </a>
30 {/* <a href="#blog" className={styles.navLink}>{t('header.nav.blog')}</a> */}
31 </nav>
32 <button className={styles.getStartedBtn}>{t('header.getStarted')}</button>
33 </div>
34 </header>
35 )
36 }
37
38 export default function DataProtectionContent() {
39 return (
40 <div className={styles.websitPage}>
41 <Header />
42
43 <main className={styles.main}>
44 <div className={styles.container}>
45 <div className={styles.header}>
46 <h1 className={styles.title}>Data Protection Agreement</h1>
47 <p className={styles.lastUpdated}>Last Updated: 2024-12-26</p>
48 </div>
49
50 <div className={styles.content}>
51 <section className={styles.section}>
52 <p className={styles.introduction}>
53 This Data Protection Agreement outlines how we handle, protect, and process your
54 personal data in compliance with applicable data protection laws, including the
55 General Data Protection Regulation (GDPR) and other relevant privacy regulations.
56 </p>
57 </section>
58
59 <section className={styles.section}>
60 <h2 className={styles.sectionTitle}>1. Data Controller Information</h2>
61 <p className={styles.sectionContent}>
62 Aitoearn, Inc. acts as the data controller for personal data collected through our
63 services. We are responsible for determining the purposes and means of processing
64 your personal data.
65 </p>
66 <div className={styles.contactInfo}>
67 <h3 className={styles.contactTitle}>Contact Information</h3>
68 <p className={styles.contactText}>
69 Email: privacy@aiearn.ai
70 <br />
71 Address: [Company Address]
72 <br />
73 Data Protection Officer: dpo@aiearn.ai
74 </p>
75 </div>
76 </section>
77
78 <section className={styles.section}>
79 <h2 className={styles.sectionTitle}>2. Types of Data We Collect</h2>
80 <p className={styles.sectionContent}>
81 We collect and process the following categories of personal data:
82 </p>
83 <ul className={styles.listContent}>
84 <li>
85 <strong>Account Information:</strong>
86 {' '}
87 Name, email address, username, password
88 </li>
89 <li>
90 <strong>Profile Data:</strong>
91 {' '}
92 Profile pictures, bio information, social media
93 links
94 </li>
95 <li>
96 <strong>Content Data:</strong>
97 {' '}
98 Posts, comments, media files, scheduling
99 information
100 </li>
101 <li>
102 <strong>Usage Data:</strong>
103 {' '}
104 Platform interactions, feature usage, analytics data
105 </li>
106 <li>
107 <strong>Technical Data:</strong>
108 {' '}
109 IP address, device information, browser type,
110 session data
111 </li>
112 <li>
113 <strong>Communication Data:</strong>
114 {' '}
115 Support tickets, feedback, correspondence
116 </li>
117 </ul>
118 </section>
119
120 <section className={styles.section}>
121 <h2 className={styles.sectionTitle}>3. Legal Basis for Processing</h2>
122 <p className={styles.sectionContent}>
123 We process your personal data based on the following legal grounds:
124 </p>
125 <ul className={styles.listContent}>
126 <li>
127 <strong>Contract Performance:</strong>
128 {' '}
129 To provide our services and fulfill our
130 contractual obligations
131 </li>
132 <li>
133 <strong>Legitimate Interest:</strong>
134 {' '}
135 To improve our services, prevent fraud, and
136 ensure security
137 </li>
138 <li>
139 <strong>Consent:</strong>
140 {' '}
141 For marketing communications and optional features
142 (where required)
143 </li>
144 <li>
145 <strong>Legal Obligation:</strong>
146 {' '}
147 To comply with applicable laws and regulations
148 </li>
149 </ul>
150 </section>
151
152 <section className={styles.section}>
153 <h2 className={styles.sectionTitle}>4. Data Sharing and Third Parties</h2>
154 <p className={styles.sectionContent}>We may share your personal data with:</p>
155 <ul className={styles.listContent}>
156 <li>
157 <strong>Service Providers:</strong>
158 {' '}
159 Cloud hosting, analytics, payment processing,
160 customer support
161 </li>
162 <li>
163 <strong>Social Media Platforms:</strong>
164 {' '}
165 When you connect and publish content to
166 external platforms
167 </li>
168 <li>
169 <strong>Legal Authorities:</strong>
170 {' '}
171 When required by law or to protect our legal
172 rights
173 </li>
174 <li>
175 <strong>Business Partners:</strong>
176 {' '}
177 With your explicit consent for specific
178 integrations
179 </li>
180 </ul>
181 <p className={styles.sectionContent}>
182 We ensure all third parties maintain appropriate data protection standards through
183 contractual agreements.
184 </p>
185 </section>
186
187 <section className={styles.section}>
188 <h2 className={styles.sectionTitle}>5. International Data Transfers</h2>
189 <p className={styles.sectionContent}>
190 Your personal data may be transferred to and processed in countries outside your
191 residence. We ensure adequate protection through:
192 </p>
193 <ul className={styles.listContent}>
194 <li>European Commission adequacy decisions</li>
195 <li>Standard Contractual Clauses (SCCs)</li>
196 <li>Data Processing Agreements with appropriate safeguards</li>
197 <li>Certification schemes and codes of conduct</li>
198 </ul>
199 </section>
200
201 <section className={styles.section}>
202 <h2 className={styles.sectionTitle}>6. Your Rights Under Data Protection Laws</h2>
203 <p className={styles.sectionContent}>
204 You have the following rights regarding your personal data:
205 </p>
206 <ul className={styles.listContent}>
207 <li>
208 <strong>Right of Access:</strong>
209 {' '}
210 Request copies of your personal data
211 </li>
212 <li>
213 <strong>Right to Rectification:</strong>
214 {' '}
215 Correct inaccurate or incomplete data
216 </li>
217 <li>
218 <strong>Right to Erasure:</strong>
219 {' '}
220 Request deletion of your personal data
221 </li>
222 <li>
223 <strong>Right to Restrict Processing:</strong>
224 {' '}
225 Limit how we use your data
226 </li>
227 <li>
228 <strong>Right to Data Portability:</strong>
229 {' '}
230 Receive your data in a portable format
231 </li>
232 <li>
233 <strong>Right to Object:</strong>
234 {' '}
235 Object to certain types of processing
236 </li>
237 <li>
238 <strong>Right to Withdraw Consent:</strong>
239 {' '}
240 Withdraw consent for consent-based
241 processing
242 </li>
243 </ul>
244 </section>
245
246 <section className={styles.section}>
247 <h2 className={styles.sectionTitle}>7. Data Retention</h2>
248 <p className={styles.sectionContent}>
249 We retain your personal data for different periods depending on the purpose:
250 </p>
251 <ul className={styles.listContent}>
252 <li>
253 <strong>Account Data:</strong>
254 {' '}
255 Until account deletion plus 30 days for backup
256 recovery
257 </li>
258 <li>
259 <strong>Content Data:</strong>
260 {' '}
261 Until deletion by user or account termination
262 </li>
263 <li>
264 <strong>Usage Analytics:</strong>
265 {' '}
266 Aggregated data retained for 2 years
267 </li>
268 <li>
269 <strong>Legal/Compliance Data:</strong>
270 {' '}
271 As required by applicable laws
272 </li>
273 <li>
274 <strong>Marketing Data:</strong>
275 {' '}
276 Until consent withdrawal or 3 years of inactivity
277 </li>
278 </ul>
279 </section>
280
281 <section className={styles.section}>
282 <h2 className={styles.sectionTitle}>8. Data Security Measures</h2>
283 <p className={styles.sectionContent}>
284 We implement comprehensive security measures to protect your personal data:
285 </p>
286 <ul className={styles.listContent}>
287 <li>End-to-end encryption for data transmission</li>
288 <li>Advanced encryption standards (AES-256) for data storage</li>
289 <li>Multi-factor authentication and access controls</li>
290 <li>Regular security audits and penetration testing</li>
291 <li>Employee training on data protection practices</li>
292 <li>Incident response and breach notification procedures</li>
293 </ul>
294 </section>
295
296 <section className={styles.section}>
297 <h2 className={styles.sectionTitle}>9. Data Breach Notification</h2>
298 <p className={styles.sectionContent}>
299 In the event of a personal data breach that is likely to result in a high risk to
300 your rights and freedoms, we will:
301 </p>
302 <ul className={styles.listContent}>
303 <li>Notify relevant supervisory authorities within 72 hours</li>
304 <li>Inform affected individuals without undue delay</li>
305 <li>Provide clear information about the breach and our response</li>
306 <li>Take immediate measures to contain and mitigate the breach</li>
307 </ul>
308 </section>
309
310 <section className={styles.section}>
311 <h2 className={styles.sectionTitle}>10. Data Subject Requests</h2>
312 <p className={styles.sectionContent}>
313 To exercise your data protection rights, please contact us at:
314 </p>
315 <div className={styles.contactInfo}>
316 <h3 className={styles.contactTitle}>Data Protection Requests</h3>
317 <p className={styles.contactText}>
318 Email: privacy@aiearn.ai
319 <br />
320 Subject Line: Data Protection Request - [Type of Request]
321 <br />
322 Response Time: Within 30 days of receipt
323 </p>
324 </div>
325 <p className={styles.sectionContent}>
326 We may require additional information to verify your identity before processing your
327 request.
328 </p>
329 </section>
330
331 <section className={styles.section}>
332 <h2 className={styles.sectionTitle}>11. Children's Privacy</h2>
333 <p className={styles.sectionContent}>
334 Our services are not intended for children under 13 years of age (or 16 in the EU).
335 We do not knowingly collect personal data from children. If we become aware that we
336 have collected personal data from a child, we will take immediate steps to delete
337 such information.
338 </p>
339 </section>
340
341 <section className={styles.section}>
342 <h2 className={styles.sectionTitle}>12. Supervisory Authority</h2>
343 <p className={styles.sectionContent}>
344 You have the right to lodge a complaint with a supervisory authority if you believe
345 our processing of your personal data violates applicable data protection laws. You
346 can contact your local data protection authority or the authority in the country
347 where the alleged violation occurred.
348 </p>
349 </section>
350
351 <section className={styles.section}>
352 <h2 className={styles.sectionTitle}>13. Updates to This Agreement</h2>
353 <p className={styles.sectionContent}>
354 We may update this Data Protection Agreement from time to time to reflect changes in
355 our practices or applicable laws. We will notify you of material changes through our
356 platform or via email. Continued use of our services after such changes constitutes
357 acceptance of the updated agreement.
358 </p>
359 </section>
360
361 <section className={styles.section}>
362 <h2 className={styles.sectionTitle}>14. Contact Information</h2>
363 <div className={styles.contactInfo}>
364 <h3 className={styles.contactTitle}>Data Protection Inquiries</h3>
365 <p className={styles.contactText}>
366 For any questions about this Data Protection Agreement or our data processing
367 practices:
368 <br />
369 <br />
370 Email: privacy@aiearn.ai
371 <br />
372 Data Protection Officer: dpo@aiearn.ai
373 <br />
374 General Contact: hello@aiearn.ai
375 </p>
376 </div>
377 </section>
378 </div>
379 </div>
380 </main>
381 </div>
382 )
383 }
384
384 lines Plain Text