forked from Yash159357/BlyFt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (86 loc) · 3.03 KB
/
index.html
File metadata and controls
99 lines (86 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy - [Your App Name]</title>
<style>
:root {
--primary-bg: #0d1b2a;
--secondary-bg: #1b263b;
--accent: #415a77;
--text-color: #e0e1dd;
--heading-color: #778da9;
}
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--primary-bg);
color: var(--text-color);
line-height: 1.6;
padding: 2rem;
}
.container {
max-width: 800px;
margin: auto;
background-color: var(--secondary-bg);
border-radius: 8px;
padding: 2rem;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
h1, h2, h3 {
color: var(--heading-color);
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
body {
padding: 1rem;
}
.container {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p><strong>Effective Date:</strong> 3<sup>rd</sup> July, 2025</p>
<p><strong>App Name:</strong> Brevity</p>
<h2>1. Information We Collect</h2>
<p>We collect the following personal information when you use our app:</p>
<ul>
<li>Email address</li>
<li>Password (securely stored using Firebase Authentication)</li>
</ul>
<p>We may also collect non-personal data like device type, crash logs, and anonymous usage statistics via Firebase services.</p>
<h2>2. How We Use This Information</h2>
<p>Your data is used to:</p>
<ul>
<li>Enable account creation and login</li>
<li>Improve app functionality and fix issues</li>
<li>Ensure security and performance</li>
</ul>
<h2>3. Third-Party Services</h2>
<p>We use Firebase by Google for backend services. These services may collect information under their own privacy policies:</p>
<ul>
<li><a href="https://firebase.google.com/support/privacy" target="_blank">Firebase Privacy Policy</a></li>
<li><a href="https://policies.google.com/privacy" target="_blank">Google Privacy Policy</a></li>
</ul>
<h2>4. Data Security</h2>
<p>We use industry-standard measures to protect your data. Passwords are encrypted and never visible to us. However, no method of transmission over the internet is completely secure.</p>
<h2>5. Children's Privacy</h2>
<p>We do not knowingly collect personal data from children under the age of 13. If you believe we have, please contact us immediately.</p>
<h2>6. Changes to This Policy</h2>
<p>We may update this policy from time to time. Any changes will be posted on this page with a revised effective date.</p>
<h2>7. Contact Us</h2>
<p>If you have any questions or concerns, feel free to contact us at: <a href="mailto:saysamarth26@gmail.com">saysamarth26@gmail.com</a></p>
</div>
</body>
</html>