-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (91 loc) · 4.59 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Privacy Policy - MindCows</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
h1, h2, h3 {
color: #333;
}
p {
color: #555;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p><strong>Effective Date:</strong> 24/08/2024</p>
<p>Welcome to <strong>MindCows</strong>! Your privacy is important to us. This Privacy Policy outlines how we collect, use, and protect your personal information when you use our app.</p>
<h2>Information We Collect</h2>
<p>We collect the following types of information when you use <strong>MindCows</strong>:</p>
<h3>1. Personal Information</h3>
<ul>
<li><strong>Account Information</strong>: When you sign up, we collect your email address, username, and other information necessary for account creation using <strong>Supabase Auth</strong>.</li>
<li><strong>Profile Data</strong>: We may collect information you provide for your user profile, such as a profile picture or display name.</li>
</ul>
<h3>2. Usage Information</h3>
<ul>
<li><strong>Gameplay Data</strong>: Information about your interactions with the app, including game progress, rankings, and performance metrics.</li>
</ul>
<h3>3. Real-Time Data</h3>
<ul>
<li><strong>Multiplayer Game Sessions</strong>: We collect and process real-time data related to your interactions with other players, including game status, turn changes, and results.</li>
</ul>
<h2>How We Use Your Information</h2>
<p>We use the information we collect to:</p>
<ul>
<li>Provide and improve our game functionality and user experience.</li>
<li>Authenticate and secure your account through <strong>Supabase Auth</strong>.</li>
<li>Enable real-time multiplayer gameplay using <strong>Supabase Realtime</strong>.</li>
<li>Update leaderboards and track player progress.</li>
<li>Communicate with you, such as sending notifications or updates about the game.</li>
</ul>
<h2>Sharing of Information</h2>
<p>We do not share or sell your personal information to third parties except in the following situations:</p>
<ul>
<li><strong>Service Providers</strong>: We may share data with trusted third-party providers who assist us in operating the app (e.g., Supabase for hosting and database services).</li>
<li><strong>Legal Compliance</strong>: We may disclose information if required by law or to protect the rights, safety, and property of <strong>MindCows</strong> and its users.</li>
</ul>
<h2>Data Security</h2>
<p>We take the security of your personal information seriously and implement reasonable safeguards to protect it. However, please note that no method of transmission over the internet or method of electronic storage is completely secure.</p>
<h2>User Rights</h2>
<p>You have the right to:</p>
<ul>
<li>Access and update your account information.</li>
<li>Request the deletion of your account and personal data.</li>
<li>Opt-out of certain communications (e.g., marketing emails).</li>
</ul>
<p>If you want to exercise any of these rights, please contact us at [email protected]</p>
<h2>Changes to This Privacy Policy</h2>
<p>We may update this Privacy Policy from time to time. We will notify you of any changes by updating the "Effective Date" at the top of this document. Please review this Privacy Policy periodically for any updates.</p>
<h2>Contact Us</h2>
<p>If you have any questions or concerns about this Privacy Policy, please contact us at:</p>
<p><strong>Email</strong>: [email protected]</p>
</div>
</body>
</html>