-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
87 lines (75 loc) · 3.36 KB
/
privacy.html
File metadata and controls
87 lines (75 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Doshy Privacy Policy - Learn how we protect your data and respect your privacy.">
<meta name="keywords" content="Doshy, privacy policy, data protection, iOS app">
<title>Doshy Privacy Policy</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<!-- Hero Section -->
<header class="hero">
<div class="logo-container">
<div class="app-icon">
<span class="icon-symbol">💰</span>
</div>
<h1>Doshy</h1>
</div>
<p class="tagline">Privacy Policy</p>
</header>
<!-- Main Content -->
<main>
<!-- Privacy Policy Content -->
<section class="card privacy-section">
<p class="last-updated">Last updated: December 2025</p>
<h2>🔒 Overview</h2>
<p>Doshy is a personal expense tracking app that respects your privacy. We do not collect, store, or
share any of your personal data.</p>
<h2>💾 Data Storage</h2>
<ul>
<li>All your data is stored locally on your device</li>
<li>If you enable iCloud sync, your data is stored in your personal iCloud account</li>
<li>We have no access to your data</li>
</ul>
<h2>🚫 Data Collection</h2>
<p>We do <strong>NOT</strong> collect:</p>
<ul>
<li>Personal information</li>
<li>Usage analytics</li>
<li>Advertising data</li>
<li>Location data</li>
<li>Any other user data</li>
</ul>
<h2>🌐 Third-Party Services</h2>
<p>Doshy uses a public exchange rate API for currency conversion. This service only receives currency
codes, not your personal information.</p>
<h2>📬 Contact</h2>
<p>If you have questions about this privacy policy, contact us at:</p>
<a href="mailto:eurus369@gmail.com" class="email-link">
<span class="email-icon">📧</span>
<span>eurus369@gmail.com</span>
</a>
<h2>📝 Changes</h2>
<p>We may update this policy occasionally. Any changes will be reflected on this page.</p>
</section>
<!-- Back to Home -->
<section class="back-link-section">
<a href="index.html" class="back-link">← Back to Support</a>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer-content">
<p>© 2025 Doshy. All rights reserved.</p>
<p class="made-with">Made with ❤️ for better money management</p>
</div>
</footer>
</div>
</body>
</html>