-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (114 loc) · 2.6 KB
/
Copy pathindex.html
File metadata and controls
127 lines (114 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PhoneDB – Support</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap"
rel="stylesheet"
/>
<style>
:root {
--bg: #000;
--fg: #fff;
--fg-muted: rgba(255, 255, 255, 0.7);
--primary: #1e90ff;
--max-width: 600px;
--gap: 1.5rem;
--radius: 8px;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
height: 100%;
background: var(--bg);
color: var(--fg);
font-family: 'Inter', system-ui, sans-serif;
line-height: 1.6;
}
body {
display: grid;
place-items: center;
padding: var(--gap);
}
.card {
max-width: var(--max-width);
width: 100%;
padding: var(--gap);
background: rgba(255, 255, 255, 0.05);
border-radius: var(--radius);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
text-align: center;
display: grid;
gap: var(--gap);
}
h1 {
font-weight: 300;
font-size: 2.5rem;
letter-spacing: 0.5px;
}
p {
font-weight: 300;
opacity: 0.9;
}
.email {
color: var(--primary);
font-weight: 600;
opacity: 1;
text-decoration: none;
transition: opacity 0.2s ease-in-out;
}
.email:hover {
opacity: 0.8;
text-decoration: underline;
}
hr {
border: none;
height: 1px;
background: rgba(255, 255, 255, 0.1);
margin: var(--gap) 0;
}
h2 {
font-size: 1.4rem;
font-weight: 300;
margin-bottom: 0.5rem;
}
section p {
margin-top: 0.5rem;
opacity: 0.85;
}
</style>
</head>
<body>
<div class="card">
<div>
<h1>PhoneDB</h1>
<p>For support, contact:</p>
<a href="mailto:support@iphonehobby.com" class="email">
support@iphonehobby.com
</a>
</div>
<hr />
<section>
<h2>Privacy Policy</h2>
<p>This app does not collect, store, or share any personal data.</p>
<p>
All data entered into the app stays on your device and is never
uploaded or shared externally. No tracking, analytics, or advertising
technologies are used.
</p>
<p>
If you have any questions about this privacy policy, please contact us
at
<a href="mailto:support@iphonehobby.com" class="email">
support@iphonehobby.com
</a>.
</p>
</section>
</div>
</body>
</html>