-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
124 lines (105 loc) · 4.24 KB
/
terms.html
File metadata and controls
124 lines (105 loc) · 4.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/plainlabs.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms of Service · PlainLab</title>
<style>
body {
color: rgb(31, 41, 55);
background-color: rgb(249, 250, 251);
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
h2 {
font-size: 1.25rem;
font-weight: 600;
margin-top: 2rem;
margin-bottom: 0.75rem;
}
p {
margin-bottom: 1rem;
color: rgb(75, 85, 99);
}
a {
color: #2563eb;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header {
margin-bottom: 2rem;
border-bottom: 1px solid #e5e7eb;
padding-bottom: 1rem;
}
.back-link {
display: inline-block;
margin-bottom: 1.5rem;
color: rgb(107, 114, 128);
font-size: 0.9rem;
}
.back-link:hover {
color: rgb(31, 41, 55);
}
.date {
color: rgb(107, 114, 128);
font-size: 0.9rem;
margin: 0;
}
</style>
</head>
<body>
<div class="container">
<a href="/" class="back-link">← Back to PlainLab</a>
<header>
<h1>Terms of Service</h1>
<p class="date">Last updated: March 3, 2026</p>
</header>
<main>
<h2>1. Terms</h2>
<p>By accessing and using the applications developed by PlainLab, you agree to be bound by these Terms of
Service. If you disagree with any part of the terms, you may not use our applications or services.</p>
<h2>2. Use License</h2>
<p>Permission is granted to download and use the applications provided by PlainLab for personal,
non-commercial, or commercial use as specified by the respective application's license agreement (e.g.,
Apple App Store End User License Agreement).</p>
<h2>3. Disclaimer</h2>
<p>The materials within PlainLab's applications are provided on an 'as is' basis. PlainLab makes no
warranties, expressed or implied, and hereby disclaims and negates all other warranties including,
without limitation, implied warranties or conditions of merchantability, fitness for a particular
purpose, or non-infringement of intellectual property or other violation of rights.</p>
<h2>4. Limitations</h2>
<p>In no event shall PlainLab be liable for any damages (including, without limitation, damages for loss of
data or profit, or due to business interruption) arising out of the use or inability to use the
applications developed by PlainLab, even if PlainLab has been notified orally or in writing of the
possibility of such damage.</p>
<h2>5. Revisions</h2>
<p>PlainLab may revise these terms of service at any time without notice. By using our applications, you
agree to be bound by the then-current version of these Terms of Service.</p>
<h2>6. Governing Law</h2>
<p>These terms and conditions are governed by and construed in accordance with applicable standard legal
frameworks, and you irrevocably submit to the exclusive jurisdiction of the courts in your relevant
jurisdiction.</p>
<h2>7. Contact</h2>
<p>If you have any questions about these Terms, please contact us at <a
href="mailto:plain@manhtai.com">plain@manhtai.com</a>.</p>
</main>
</div>
</body>
</html>