-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
98 lines (85 loc) · 3.23 KB
/
terms.html
File metadata and controls
98 lines (85 loc) · 3.23 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Handigo | Terms & Conditions</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=Epilogue:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/common.css" />
<link rel="stylesheet" href="assets/css/terms.css" />
</head>
<body>
<header class="header">
<div class="header-inner">
<a class="brand" href="index.html#home" aria-label="Handigo home">
<span class="brand-stack">
<img class="brand-img" src="assets/images/logo.png" alt="Handigo logo">
</span>
</a>
<div aria-hidden="true"></div>
<div class="actions">
<a class="back-link" href="index.html#home">← Back to Home</a>
</div>
</div>
</header>
<main class="terms">
<div class="container">
<div class="terms-card">
<h2>Terms and Conditions</h2>
<p class="updated">Last updated: 2026</p>
<section>
<h3>1. Introduction</h3>
<p>
Handigo is an academic thesis project designed to explore gesture-based
human–computer interaction. By accessing or installing this application,
you agree to comply with these terms and conditions.
</p>
</section>
<section>
<h3>2. Intended Use</h3>
<p>
Handigo is intended for desktop and laptop systems using a standard webcam.
The application is designed for productivity and research purposes only.
It is not intended for gaming or multi-user environments.
</p>
</section>
<section>
<h3>3. Intellectual Property</h3>
<p>
The Handigo system, including its source code, interface design, and
documentation, is protected as an academic research project.
Reverse engineering, modifying, redistributing, or reproducing the
system without permission is strictly prohibited.
</p>
</section>
<section>
<h3>4. Limitations</h3>
<ul>
<li>Supports only predefined gesture sets.</li>
<li>Performance may decrease in low-light conditions.</li>
<li>Designed for single-user operation.</li>
<li>Compatible primarily with Windows and Linux systems.</li>
</ul>
</section>
<section>
<h3>5. Disclaimer</h3>
<p>
Handigo is provided “as is” without warranty of any kind.
The developers are not liable for any damages resulting from
improper use of the system.
</p>
</section>
<section>
<h3>6. Acceptance</h3>
<p>
By installing or using Handigo, you confirm that you have read,
understood, and agreed to these terms.
</p>
</section>
</div>
</div>
</main>
</body>
</html>