-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
131 lines (108 loc) · 5.21 KB
/
Copy pathprivacy.html
File metadata and controls
131 lines (108 loc) · 5.21 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Agent Kitten - Privacy Policy</title>
<link rel="icon" href="favicon.svg" type="image/svg+xml" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #4D1F6D, #FF4081); /* Gradient background */
color: #e0e0e0;
line-height: 1.6;
}
h1, h2 {
color: #FF4081; /* Consistent with the main theme color */
text-align: center;
}
.container {
max-width: 900px;
margin: 40px auto;
background: rgba(30, 30, 30, 0.9);
padding: 30px;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}
pre {
background: #282828;
color: #ddd;
padding: 20px;
border-radius: 5px;
overflow-wrap: break-word;
white-space: pre-wrap;
word-wrap: break-word;
overflow: auto;
text-align: left;
}
p, a {
color: #e0e0e0;
}
a {
color: #FFEB3B; /* Light yellow for links */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
text-align: center;
margin-top: 40px;
}
/* Ensure responsiveness */
@media (max-width: 768px) {
.container {
margin: 20px;
padding: 20px;
}
h1 {
font-size: 30px;
}
h2 {
font-size: 20px;
}
pre {
font-size: 14px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Agent Kitten - Privacy Policy</h1>
<h2>Effective Date: December 21, 2024</h2>
<p>Your privacy is important to us. This Privacy Policy outlines how Agent Kitten collects, uses, protects, and shares your information.</p>
<pre>
1. Information We Collect:
- Discord User ID: We store your Discord user ID (a unique identifier) to identify you for personalized interactions.
- Chat Messages: Your chat messages with Agent Kitten are temporarily stored for the duration of your session. You can use the /chatreset command to delete your chat history at any time.
- Experience Points: Based on your interactions with Agent Kitten, we may assign experience points that are linked to your Discord user ID.
- User and Server Configurations: Any settings or customizations you make to personalize your experience with the bot are stored.
2. How We Use Your Information:
- To provide you with a personalized experience through the Agent Kitten Discord bot.
- To track experience points based on your interactions.
- To store your user and server preferences for customized interactions with the bot.
3. Data Retention:
We retain your Discord user ID, experience points, chat messages, and configurations until you request for your data to be deleted. You can reset your chat history anytime using the /chatreset command.
4. Data Sharing:
- We do not share your personal information with third parties. We will not share, sell, or rent your information to any third party for any purpose.
5. Legal Compliance:
We may disclose your personal information if required by law or if we believe it is necessary to protect the rights, property, or safety of Agent Kitten, our users, or others.
6. User Rights:
You have the right to access, correct, or delete your personal information controlled by Agent Kitten. To exercise these rights, please contact us using the details provided in section 10.
7. Data Security:
We take reasonable measures to protect your information from unauthorized access, disclosure, alteration, or destruction. This includes encryption at rest and in transit, and access controls.
8. Data Breach Notification:
In the event of a data breach, we will notify all affected users in our Discord server at <a href="https://discord.gg/ZwAhWC7mpZ">https://discord.gg/ZwAhWC7mpZ</a>.
9. Changes to This Policy:
We may update this Privacy Policy from time to time. Users will be notified of significant changes through official Discord channels. The revised version will be effective at the time we post it. Your continued use of Agent Kitten following any changes constitutes your acceptance of the new policy.
10. Contact Information:
If you have any questions or concerns about these terms or our privacy practices, please reach out to us via <a href="https://discord.gg/ZwAhWC7mpZ">our official Discord server</a> or email at <a href="mailto:contact@clowdertech.com">contact@clowdertech.com</a>.
</pre>
<p class="footer"><a href="/">Back to Home</a></p>
</div>
</body>
</html>