-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (99 loc) · 4.62 KB
/
index.html
File metadata and controls
109 lines (99 loc) · 4.62 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">
<meta name="description" content="Doshy - Your personal expense tracking app for iOS. Simple, private, and free.">
<meta name="keywords" content="Doshy, expense tracker, iOS app, budget, money management, iCloud sync">
<title>Doshy Support</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">Simple expense tracking, your way.</p>
</header>
<!-- Main Content -->
<main>
<!-- Contact Section -->
<section class="card contact-section">
<h2>📬 Contact Us</h2>
<p>For any questions, feedback, or issues, please reach out:</p>
<a href="mailto:eurus369@gmail.com" class="email-link">
<span class="email-icon">📧</span>
<span>eurus369@gmail.com</span>
</a>
</section>
<!-- FAQ Section -->
<section class="faq-section">
<h2>❓ Frequently Asked Questions</h2>
<div class="card faq-item">
<h3>🔐 How is my data stored?</h3>
<p>All your data is stored locally on your device and synced to your personal iCloud. <strong>We do
not have access to your data.</strong> Your privacy is our top priority.</p>
</div>
<div class="card faq-item">
<h3>❓ Is Doshy free?</h3>
<p>Yes! <strong>Doshy is completely free</strong> with no ads or in-app purchases. Enjoy full
functionality without any hidden costs.</p>
</div>
</section>
<!-- About Developer Section -->
<section class="card contact-section">
<h2>👋 About the Developer</h2>
<p>Hi! I'm currently looking for <strong>AI Product Manager</strong> or <strong>AI Engineer</strong>
roles based in <strong>Sydney</strong>. If you have any opportunities or would like to connect, feel
free to reach out!</p>
<a href="https://www.linkedin.com/in/chenxi-liu-data/" target="_blank" class="email-link">
<span class="email-icon">🤝</span>
<span>Connect on LinkedIn</span>
</a>
</section>
<!-- Features Section -->
<section class="features-section">
<h2>✨ Features</h2>
<div class="features-grid">
<div class="feature-card">
<span class="feature-icon">📊</span>
<h4>Track Expenses</h4>
<p>Easily log and categorize your daily spending</p>
</div>
<div class="feature-card">
<span class="feature-icon">☁️</span>
<h4>iCloud Sync</h4>
<p>Your data syncs securely across all devices</p>
</div>
<div class="feature-card">
<span class="feature-icon">🔒</span>
<h4>Private & Secure</h4>
<p>Your data stays on your device and iCloud</p>
</div>
<div class="feature-card">
<span class="feature-icon">🎨</span>
<h4>Beautiful Design</h4>
<p>Modern, intuitive interface that's a joy to use</p>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer-content">
<p>© 2025 Doshy. All rights reserved.</p>
<a href="privacy.html" class="footer-link">Privacy Policy</a>
<p class="made-with">Made with ❤️ for better money management</p>
</div>
</footer>
</div>
</body>
</html>