-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
116 lines (108 loc) · 3.76 KB
/
Copy pathterms.html
File metadata and controls
116 lines (108 loc) · 3.76 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
<!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 — Terms of Service</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>Terms of Service</h1>
<div class="updated">Last updated June 2026</div>
<h2>Using FITMER</h2>
<p>FITMER is provided free of charge as an interval workout timer. By using
the app you agree to these terms.</p>
<h2>Not medical advice</h2>
<p>FITMER is a timer, not a coach or a medical device. It does not provide
medical, health or fitness advice. Exercise carries inherent risks — consult
a qualified professional before starting any program and stop if you feel
unwell. You train at your own risk.</p>
<h2>Provided “as is”</h2>
<p>The app is provided “as is”, without warranties of any kind. To the extent
permitted by law, we are not liable for any injury, loss or damage arising
from its use, including missed or inaccurate timer cues.</p>
<h2>Acceptable use</h2>
<p>Use the app for its intended purpose. Do not attempt to misuse,
reverse-engineer for malicious ends, or disrupt the app or the website.</p>
<h2>Intellectual property</h2>
<p>The FITMER name, brand and app design belong to their owner. These terms do
not grant you rights to the brand beyond normal use of the app.</p>
<h2>Changes</h2>
<p>We may update these terms as the app evolves. Continued use after a change
means you accept the updated terms.</p>
<h2>Contact</h2>
<p>Questions about these terms? 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="privacy.html">Privacy Policy</a>
</footer>
</main>
</body>
</html>