-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
87 lines (78 loc) · 2.53 KB
/
privacy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy - PyTik</title>
<link rel="stylesheet" href="assets/styles.css" />
</head>
<body>
<header>
<div class="container">
<h1>PyTik</h1>
<nav>
<a href="index.html">Home</a>
<a href="terms.html">Terms of Service</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main>
<section class="container">
<h2>Privacy Policy</h2>
<p>Last Updated: 02/16/2025</p>
<p>
TikTokPy values your privacy. This Privacy Policy outlines what data
we collect, how we use it, and your rights regarding your data.
</p>
<h3>1. Information We Do Not Collect</h3>
<p>The App does not collect, store, or transmit any personal data.</p>
<p>
No user activity is tracked, and no personally identifiable
information is processed.
</p>
<h3>2. Local Data Processing</h3>
<p>All operations performed by the App occur locally on your device.</p>
<p>
No user-generated content or metadata is transmitted to external
servers.
</p>
<h3>3. Third-Party Services</h3>
<p>
The App does not integrate with third-party analytics, advertising, or
tracking services.
</p>
<p>
If any third-party services are required for functionality (e.g.,
TikTok API), users will be subject to their respective privacy
policies.
</p>
<h3>4. Security</h3>
<p>
Since the App does not collect or transmit data, there is no risk of
data breaches from our side.
</p>
<p>
Users are responsible for securing their local files and usage of the
App.
</p>
<h3>5. Changes to This Privacy Policy</h3>
<p>We reserve the right to update this Privacy Policy at any time.</p>
<p>
Any changes will be posted on our official website or within the App’s
documentation.
</p>
<h3>6. Contact</h3>
<p>
If you have any questions regarding this Privacy Policy, contact us at
</p>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 PyTik. All rights reserved.</p>
</div>
</footer>
</body>
</html>