-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprivacy.html
149 lines (140 loc) · 6.54 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | Flik - AI Shopping Application</title>
<title>Privacy Policy | Flik - AI Shopping Application</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
line-height: 1.7;
margin: 0;
padding: 0;
background-color: #f0f2f5;
color: #4a4a4a;
}
.container {
max-width: 100%;
margin: 0 auto;
background: #f1f0ee;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
animation: fadeIn 1s ease-in-out;
}
.breadcrumb {
font-size: 1em;
margin-bottom: 20px;
color: #666;
}
.breadcrumb a {
color: #0066cc;
text-decoration: none;
}
.breadcrumb a:hover {
text-decoration: underline;
}
h1 {
color: #333;
font-size: 2.2em;
margin-bottom: 20px;
font-weight: 700;
}
h2 {
color: #555;
font-size: 1.6em;
margin-top: 30px;
font-weight: 500;
}
p {
margin-bottom: 20px;
font-size: 1.1em;
}
ul {
margin-left: 20px;
margin-bottom: 20px;
font-size: 1.1em;
}
ul li {
margin-bottom: 10px;
}
a {
color: #0066cc;
text-decoration: none;
font-weight: 500;
}
a:hover {
text-decoration: underline;
}
hr {
margin-bottom: 20px;
border: 0;
border-top: 1px solid #ddd;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container">
<nav class="breadcrumb">
<a href="/">Home</a> > Privacy Policy
</nav>
<h1>Privacy Policy</h1>
<hr>
<p><strong>Introduction</strong></p>
<p>This Privacy Policy governs the mobile application operated by Flik (hereinafter, "us", "we", or “Flik”), including, without limitation, the application currently available as Flik - AI Shopping Application. By using our application, you consent to the collection and use of your personal information as outlined in this Privacy Policy.</p>
<p>We have adopted this privacy policy ("Privacy Policy") to explain what information may be collected in our app, how we use this information, and under what circumstances we may disclose the information to third parties. This Privacy Policy applies only to information we collect through the mobile application and does not apply to our collection of information from other sources. Depending on your activities within the app, you may be required to agree to additional terms and conditions.</p>
<p>Flik is unwavering in its commitment to safeguarding your privacy. This privacy policy provides a comprehensive overview of how we gather, employ, and distribute your personal information.</p>
<h2>1. Personal Information We Collect</h2>
<p>We gather personal information when you utilize our mobile application. This information may encompass:</p>
<ul>
<li>Your name, email address, and telephone number (for login)</li>
<li>Your interactions with our app, including preferences, shopping history, and searches</li>
<li>Your device details and IP address</li>
</ul>
<h2>2. How We Utilize Your Personal Information</h2>
<p>We employ your personal information for the following purposes:</p>
<ul>
<li>Provision of our mobile app and personalized shopping recommendations</li>
<li>Communication regarding your account and related products and services</li>
<li>Enhancement of user experience in the app</li>
<li>Marketing of our products and services</li>
</ul>
<h2>3. Security</h2>
<p>The security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage, is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.</p>
<h2>4. How We Disclose Your Personal Information</h2>
<p>Your personal information may be shared with:</p>
<ul>
<li>Our service providers who assist us in delivering our app's services</li>
<li>Law enforcement or government agencies as mandated by law</li>
</ul>
<h2>5. Google Analytics and Other Tools</h2>
<p>Flik may also use third-party solutions to conduct analytics, such as Google Analytics, to monitor app usage and improve the user experience. The information generated by the tools will be used to enhance our services and app performance.</p>
<h2>6. Your Choices</h2>
<p>You retain the right to make choices concerning how we collect and utilize your personal information. You may:</p>
<ul>
<li>Opt out of receiving marketing emails from us</li>
<li>Request access to your personal information</li>
<li>Request the deletion of your personal information</li>
</ul>
<p>To exercise your choices, please contact us at <a href="mailto:[email protected]">[email protected]</a></p>
<h2>7. Cookies</h2>
<p>Flik uses "Cookies" and similar technologies to enhance your experience. These help track usage patterns and remember your preferences.</p>
<h2>8. Privacy Policy Changes</h2>
<p>We reserve the right to periodically revise this privacy policy. In the event of any alterations, we will promptly post the updated privacy policy in our app.</p>
<h2>9. Feedback</h2>
<p>Should you have any inquiries about this privacy policy, please do not hesitate to contact us at <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</body>
</html>