-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 1.92 KB
/
index.html
File metadata and controls
66 lines (61 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DreamRank Support</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background: #0a0a12;
color: #f4f4f6;
line-height: 1.6;
padding: 40px;
max-width: 720px;
margin: auto;
}
h1 {
font-size: 2rem;
color: #a88bff;
}
a {
color: #8aa4ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.card {
background: #151525;
border-radius: 12px;
padding: 24px;
box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
</style>
</head>
<body>
<h1>DreamRank Support</h1>
<div class="card">
<p>Welcome to the DreamRank support page. If you need help with the app, have feedback, or want to report an issue, we’re here for you.</p>
<h2>📩 Contact Us</h2>
<p>Email: <a href="mailto:ahmadkurniawanibrahim@gmail.com">ahmadkurniawanibrahim@gmail.com</a></p>
<p>We typically respond within 1–2 business days.</p>
<h2>🔐 Privacy Policy</h2>
<p>You can view our full privacy policy here:</p>
<p><a href="https://ahmadkurniawan.github.io/dreamrank-support/privacy-policy.html" target="_blank">
DreamRank Privacy Policy
</a></p>
<h2>💡 Common Topics</h2>
<ul>
<li>How to connect Apple Health & Apple Watch</li>
<li>Managing permissions (HealthKit & Notifications)</li>
<li>Creating or joining challenges</li>
<li>Understanding leaderboard scores</li>
</ul>
<p>For any issues related to data or account deletion, please include your Apple ID (used in the app) in your email request.</p>
</div>
<footer style="margin-top: 32px; color: #888; font-size: 0.9rem;">
© 2025 DreamRank Labs. All rights reserved.
</footer>
</body>
</html>