-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
146 lines (134 loc) · 7.07 KB
/
privacy.html
File metadata and controls
146 lines (134 loc) · 7.07 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>Privacy Policy | SunQuest - GPS-Free Navigation App</title>
<meta name="title" content="Privacy Policy | SunQuest - GPS-Free Navigation App">
<meta name="description" content="Learn about SunQuest's commitment to your privacy. Our GPS-free navigation app respects your data and ensures secure, transparent handling of your information.">
<meta name="keywords" content="SunQuest privacy policy, data protection, app privacy, navigation app security, user data privacy">
<meta name="author" content="CodeHospital">
<meta name="robots" content="index, follow">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://sunquest.codehospital.com/privacy.html">
<meta property="og:title" content="Privacy Policy | SunQuest - GPS-Free Navigation App">
<meta property="og:description" content="Learn about SunQuest's commitment to your privacy. Our GPS-free navigation app respects your data and ensures secure, transparent handling of your information.">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/webp" href="assets/logo.webp">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="index.html">
<img src="assets/logo.webp" alt="SunQuest Logo" class="logo-img">
<span>SunQuest</span>
</a>
</div>
<div class="nav-links">
<a href="index.html#features">Features</a>
<a href="index.html#download">Download</a>
<a href="index.html#contact">Contact</a>
<a href="privacy.html" class="active">Privacy</a>
</div>
</nav>
</header>
<main class="privacy-content">
<section class="privacy-section">
<h1>Privacy Policy</h1>
<p class="last-updated">Last Updated: February 25, 2025</p>
<div class="policy-content">
<section>
<h2>Introduction</h2>
<p>Welcome to SunQuest's Privacy Policy. SunQuest is a software solution designed to help you determine direction when your device's magnetometer (compass) is not working properly. We are committed to protecting your privacy and ensuring that your data is handled securely and transparently.</p>
</section>
<section>
<h2>Information We Collect</h2>
<p>SunQuest collects the following data to provide and improve our service:</p>
<ul>
<li>Device orientation data (for basic direction sensing)</li>
<li>Time and date information (for accurate sun position calculations)</li>
<li>Device location (only when actively using the app)</li>
<li>Device information (model and brand)</li>
<li>Device settings (for optimal app performance)</li>
</ul>
</section>
<section>
<h2>How We Use Your Information</h2>
<p>The information we collect is used for:</p>
<ul>
<li>Calculating the sun's position to determine direction</li>
<li>Providing alternative direction finding when magnetometer is unavailable</li>
<li>Determining your current orientation</li>
<li>Improving app performance and accuracy</li>
<li>Analyzing device compatibility and performance</li>
</ul>
</section>
<section>
<h2>Data Collection Preferences</h2>
<p>You have control over your data collection preferences:</p>
<ul>
<li>You will be asked about data collection when you first launch the app</li>
<li>You can change your preference at any time through the About box (menu → About)</li>
<li>Your choice is stored locally on your device</li>
<li>You can enable or disable data collection at any time</li>
</ul>
</section>
<section>
<h2>Data Storage and Security</h2>
<p>SunQuest stores and processes data on our secure servers. We implement appropriate security measures to protect your information. We do not:</p>
<ul>
<li>Share your personal information with third parties without your consent</li>
<li>Use your data for advertising purposes</li>
<li>Store your location history beyond what is necessary for the service</li>
</ul>
</section>
<section>
<h2>Your Rights</h2>
<p>You have the following rights regarding your data:</p>
<ul>
<li>Access your stored data</li>
<li>Request deletion of your data</li>
<li>Opt-out of data collection at any time</li>
<li>Request information about how your data is being used</li>
</ul>
</section>
<section>
<h2>Contact Us</h2>
<p>If you have any questions about this Privacy Policy, you can contact us:</p>
<ul>
<li>By email: <a href="mailto:sunquest@codehospital.com">sunquest@codehospital.com</a></li>
<li>By visiting our website: <a href="https://sunquest.codehospital.com">sunquest.codehospital.com</a></li>
</ul>
</section>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h4>SunQuest</h4>
<p>© 2025 CodeHospital. All rights reserved.</p>
</div>
<div class="footer-section">
<h4>Links</h4>
<a href="index.html#features">Features</a>
<a href="index.html#download">Download</a>
<a href="index.html#contact">Contact</a>
<a href="privacy.html">Privacy Policy</a>
</div>
<div class="footer-section">
<h4>Follow Us</h4>
<div class="social-links">
<a href="#" target="_blank">Twitter</a>
<a href="#" target="_blank">Instagram</a>
<a href="#" target="_blank">LinkedIn</a>
</div>
</div>
</div>
</footer>
</body>
</html>