-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprivacy.html
More file actions
109 lines (93 loc) · 2.86 KB
/
privacy.html
File metadata and controls
109 lines (93 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Privacy Policy – ChatbotTutor</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: #f9f9f9;
color: #333;
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 40px auto;
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
h1 {
color: #4a90e2;
text-align: center;
}
h2 {
color: #222;
margin-top: 30px;
}
p {
margin-bottom: 16px;
}
footer {
text-align: center;
margin-top: 40px;
font-size: 0.9rem;
color: #777;
}
a {
color: #4a90e2;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p>Last Updated: July 20, 2025</p>
<h2>1. Introduction</h2>
<p>
Welcome to ChatbotTutor. We are committed to protecting your personal information and your right to privacy.
</p>
<h2>2. Information We Collect</h2>
<p>
When you sign up or use our services, we collect personal data such as your name, email address, and chat messages. We also collect usage data such as device type, IP address, and browser information.
</p>
<h2>3. How We Use Your Data</h2>
<p>
We use your data to provide and improve our services, personalize your experience, ensure security, and comply with legal obligations.
</p>
<h2>4. Use of AI Services</h2>
<p>
Chat messages (including image data) are sent to Google's Gemini API to generate responses. This data is processed securely and not used to identify you personally.
</p>
<h2>5. Sharing of Information</h2>
<p>
We do not sell your personal data. Your information is only shared with trusted third parties such as Firebase and Gemini API services, strictly for service delivery.
</p>
<h2>6. Your Rights</h2>
<p>
You have the right to access, update, or delete your personal data. Contact us at <a href="mailto:your.email@example.com">your.email@example.com</a> for data-related requests.
</p>
<h2>7. Data Security</h2>
<p>
We implement industry-standard security practices to protect your data from unauthorized access or disclosure.
</p>
<h2>8. Changes to This Policy</h2>
<p>
We may update this Privacy Policy from time to time. Changes will be posted on this page with an updated revision date.
</p>
<footer>
© 2025 ChatbotTutor. All rights reserved. |
<a href="terms.html">Terms of Service</a> |
<a href="index.html">Back to Home</a>
</footer>
</div>
</body>
</html>