-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms-of-service.html
More file actions
199 lines (170 loc) · 4.65 KB
/
terms-of-service.html
File metadata and controls
199 lines (170 loc) · 4.65 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - LiveLens</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
margin: 0;
background: #0f172a;
color: #e2e8f0;
line-height: 1.6;
}
.container {
max-width: 900px;
margin: auto;
padding: 40px 20px;
}
h1 {
font-size: 2.5rem;
color: #38bdf8;
margin-bottom: 10px;
}
h2 {
color: #38bdf8;
margin-top: 25px;
border-bottom: 1px solid #1e293b;
padding-bottom: 5px;
}
p {
margin: 10px 0;
}
ul {
padding-left: 20px;
}
li {
margin-bottom: 8px;
}
.card {
background: #020617;
padding: 20px;
border-radius: 12px;
margin-top: 20px;
box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #1e293b;
font-size: 0.9rem;
color: #94a3b8;
}
a {
color: #38bdf8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>📄 Terms of Service</h1>
<p><strong>Effective Date:</strong> April 15, 2026</p>
<p><strong>Owner:</strong> Bycon Studio</p>
<div class="card">
<h2>1. Acceptance of Terms</h2>
<p>
By downloading, installing, or using <strong>LiveLens</strong>, you agree to be bound by these Terms of Service.
If you do not agree, please do not use the application.
</p>
</div>
<div class="card">
<h2>2. Description of Service</h2>
<p>LiveLens allows users to:</p>
<ul>
<li>Stream live video using RTMP</li>
<li>Record video content</li>
<li>Manage multiple media sources</li>
</ul>
<p>
The app is a <strong>local-first streaming tool</strong> and does not store user content on external servers.
</p>
</div>
<div class="card">
<h2>3. User Responsibilities</h2>
<ul>
<li>Do not stream illegal or copyrighted content without permission</li>
<li>Do not violate YouTube or Twitch policies</li>
<li>Do not use the app for harmful or fraudulent purposes</li>
</ul>
<p>You are fully responsible for the content you stream or record.</p>
</div>
<div class="card">
<h2>4. Third-Party Services</h2>
<p>
LiveLens integrates with platforms such as YouTube and Twitch.
Your use of these services is governed by their respective terms.
</p>
<p>
We are not responsible for third-party services or their policies.
</p>
</div>
<div class="card">
<h2>5. No Account Storage</h2>
<p>
LiveLens does not store login credentials, stream keys, or personal data on external servers.
All data remains on your device.
</p>
</div>
<div class="card">
<h2>6. Intellectual Property</h2>
<p>
All rights related to LiveLens are owned by <strong>Bycon Studio</strong>.
</p>
<ul>
<li>No copying or redistribution</li>
<li>No reverse engineering</li>
<li>No unauthorized branding use</li>
</ul>
</div>
<div class="card">
<h2>7. App Availability</h2>
<p>
We do not guarantee uninterrupted or error-free operation.
Features may change or be removed at any time.
</p>
</div>
<div class="card">
<h2>8. Limitation of Liability</h2>
<ul>
<li>No liability for data loss</li>
<li>No liability for streaming failures</li>
<li>No liability for third-party issues</li>
</ul>
<p>Use the app at your own risk.</p>
</div>
<div class="card">
<h2>9. Termination</h2>
<p>
We may suspend or terminate access if these terms are violated.
</p>
</div>
<div class="card">
<h2>10. Updates to Terms</h2>
<p>
These terms may be updated at any time. Continued use means acceptance of changes.
</p>
</div>
<div class="card">
<h2>11. Governing Law</h2>
<p>
These terms are governed by applicable laws of your jurisdiction.
</p>
</div>
<div class="card">
<h2>12. Contact</h2>
<p>
<strong>Bycon Studio</strong><br>
Email: <a href="mailto:byconcare@gmail.com">byconcare@gmail.com</a>
</p>
</div>
<div class="footer">
© 2026 LiveLens • All rights reserved
</div>
</div>
</body>
</html>