-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
118 lines (110 loc) · 3.82 KB
/
Copy pathprivacy.html
File metadata and controls
118 lines (110 loc) · 3.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow">
<title>FITMER — Privacy Policy</title>
<style>
/* FITMER DS tokens (tokens/colors.css, dark) */
:root {
--bg: #1F242B; /* ink800 */
--card: #272D36; /* surfaceCard / ink700 */
--text: #EEF1F4; /* textDefault */
--muted: #9AA5B3; /* textMuted */
--faint: #6C7785; /* textFaint */
--strong: #FFFFFF; /* textStrong */
--accent: #4BDE7F; /* brandGreen */
--line: rgba(255,255,255,0.12); /* borderDefault */
}
/* UI-шрифт бренда (Archivo, вариативный) */
@font-face {
font-family: 'Archivo';
src: url('fonts/Archivo-Variable.ttf') format('truetype');
font-weight: 100 900;
font-display: swap;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
background: var(--bg);
color: var(--text);
font-family: 'Archivo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}
main {
max-width: 720px;
margin: 0 auto;
padding: 48px 22px 80px;
}
.brand {
font-weight: 800;
letter-spacing: 0.12em;
color: var(--accent);
font-size: 14px;
text-transform: uppercase;
}
h1 {
color: var(--strong);
font-size: 30px;
font-weight: 800;
margin: 8px 0 4px;
}
.updated { color: var(--faint); font-size: 14px; margin-bottom: 36px; }
h2 {
color: var(--strong);
font-size: 18px;
font-weight: 800;
margin: 32px 0 8px;
}
p { color: var(--muted); margin: 0 0 12px; }
a { color: var(--accent); }
footer {
margin-top: 56px;
padding-top: 20px;
border-top: 1px solid var(--line);
color: var(--faint);
font-size: 13px;
}
footer a { color: var(--muted); }
</style>
</head>
<body>
<main>
<div class="brand">FITMER</div>
<h1>Privacy Policy</h1>
<div class="updated">Last updated June 2026</div>
<h2>The short version</h2>
<p>FITMER is an interval workout timer. It does not collect, transmit or sell
your personal data. There are no accounts, no ads, no analytics and no
third-party tracking.</p>
<h2>What we store</h2>
<p>Your preferences (sounds, vibration, prep countdown, display options and
similar settings) are saved locally on your device and never leave it.
Workout sessions run entirely in memory and are not recorded or uploaded.</p>
<h2>What we do NOT collect</h2>
<p>We do not collect your name, email, contacts, location, advertising
identifiers or usage analytics. The app contains no advertising and no
in-app purchases.</p>
<h2>Permissions</h2>
<p>On mobile the app may request to keep the screen awake and to vibrate
during a workout, and plays audio cues. These are used only for the timer
while you train and involve no data sharing.</p>
<h2>On the web</h2>
<p>The web version is served as a static site. Your settings are kept in your
browser’s local storage on your device; nothing about your sessions is sent
to or stored on a server by us.</p>
<h2>Children</h2>
<p>FITMER is suitable for general audiences and does not knowingly collect any
information from anyone, including children.</p>
<h2>Contact</h2>
<p>Questions about privacy? Write to
<a href="mailto:vivchar.vitaliy+fitmer@gmail.com">vivchar.vitaliy+fitmer@gmail.com</a>.</p>
<footer>
<a href="https://fitmer.tom.ru">fitmer.tom.ru</a> ·
<a href="terms.html">Terms of Service</a>
</footer>
</main>
</body>
</html>