This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
272 lines (250 loc) · 12.5 KB
/
terms.html
File metadata and controls
272 lines (250 loc) · 12.5 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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms & Conditions - No Box Dev</title>
<meta name="description" content="Terms & Conditions for NoBoxDev Development & Design Services.">
<link rel="stylesheet" href="css/styles.css">
<style>
.terms-page {
background-color: #FFFFFF;
min-height: 100vh;
padding: 120px 0 80px;
}
.terms-container {
max-width: 800px;
margin: 0 auto;
padding: 0 var(--spacing-md);
color: #FE795D;
}
.terms-title {
font-family: var(--font-display);
font-size: 40px;
color: #FE795D;
margin-bottom: var(--spacing-xs);
}
.terms-subtitle {
font-family: var(--font-body);
font-size: 18px;
color: #FE795D;
margin-bottom: var(--spacing-xs);
}
.terms-updated {
font-family: var(--font-body);
font-size: 14px;
color: #FE795D;
opacity: 0.8;
margin-bottom: var(--spacing-xl);
}
.terms-intro {
font-family: var(--font-body);
font-size: 16px;
color: #FE795D;
line-height: 1.8;
margin-bottom: var(--spacing-xl);
}
.terms-section {
margin-bottom: var(--spacing-lg);
}
.terms-section h2 {
font-family: var(--font-display);
font-size: 24px;
color: #FE795D;
margin-bottom: var(--spacing-sm);
}
.terms-section p {
font-family: var(--font-body);
font-size: 16px;
color: #FE795D;
line-height: 1.8;
margin-bottom: var(--spacing-sm);
}
.terms-section ul {
list-style: none;
padding-left: var(--spacing-md);
margin-bottom: var(--spacing-sm);
}
.terms-section ul li {
font-family: var(--font-body);
font-size: 16px;
color: #FE795D;
line-height: 1.8;
position: relative;
padding-left: var(--spacing-sm);
}
.terms-section ul li::before {
content: "•";
position: absolute;
left: 0;
}
</style>
</head>
<body>
<!-- Header -->
<header class="header" id="header">
<div class="header-bar"></div>
<div class="container">
<div class="header-inner">
<a href="/" class="logo">
<img src="assets/images/logo.svg" alt="No Box Dev" class="logo-img">
</a>
<nav class="nav">
<a href="index.html#services" class="nav-link">Services</a>
<a href="index.html#case-studies" class="nav-link">Case studies</a>
<a href="index.html#how-we-work" class="nav-link">How we work</a>
<a href="index.html#contact" class="btn btn-coral">Contact us</a>
</nav>
<button class="mobile-menu-btn" id="mobile-menu-btn" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
</div>
</div>
</header>
<!-- Mobile Navigation -->
<nav class="mobile-nav" id="mobile-nav">
<a href="index.html#services" class="mobile-nav-link">Services</a>
<a href="index.html#case-studies" class="mobile-nav-link">Case studies</a>
<a href="index.html#how-we-work" class="mobile-nav-link">How we work</a>
<a href="index.html#contact" class="btn btn-coral">Contact us</a>
</nav>
<!-- Terms Content -->
<main class="terms-page">
<div class="terms-container">
<a href="index.html" class="btn btn-coral" style="margin-bottom: var(--spacing-lg);">Go Back</a>
<h1 class="terms-title">Terms & Conditions</h1>
<p class="terms-subtitle">(Development & Design Services)</p>
<p class="terms-updated">Last updated: January 2026</p>
<p class="terms-intro">These Terms & Conditions apply to all services provided by NoBoxDev ("we", "us", "our") to the client ("you", "your"). By entering into a project, proposal, or agreement with us, you agree to the following terms.</p>
<div class="terms-section">
<h2>1. Scope of Work</h2>
<p>1.1. All work will be performed according to the agreed proposal, statement of work, or project summary.</p>
<p>1.2. Any changes to scope—such as new features, additional screens, integrations, or workflows—must be approved in writing and may affect timelines and pricing.</p>
<p>1.3. We work in iterative cycles. Deliverables are shared through design tools, development environments, or demo links.</p>
</div>
<div class="terms-section">
<h2>2. Client Responsibilities</h2>
<p>2.1. You agree to provide timely access to all information, materials, and decisions required for the project.</p>
<p>2.2. Delays in feedback or approvals may result in adjusted timelines.</p>
<p>2.3. You are responsible for ensuring that any content, images, data, or third-party material you provide does not infringe on intellectual property rights.</p>
</div>
<div class="terms-section">
<h2>3. Collaboration & Communication</h2>
<p>3.1. Communication takes place via email, Slack, shared project boards (e.g., ClickUp), or scheduled calls.</p>
<p>3.2. Feedback rounds and revision cycles follow the structure outlined in the proposal.</p>
<p>3.3. Any urgent requests outside the agreed workflow may require additional fees.</p>
</div>
<div class="terms-section">
<h2>4. Payments & Invoicing</h2>
<p>4.1. Project fees, retainers, or fixed pricing are outlined in your proposal.</p>
<p>4.2. Invoices are issued according to the agreed schedule (e.g., upfront deposit, milestone-based, or monthly).</p>
<p>4.3. Payment terms are 14 days unless otherwise stated.</p>
<p>4.4. Late payments may pause the project until resolved.</p>
<p>4.5. Fees for third-party tools (e.g., Bubble plans, APIs, plugins, hosting) are not included unless explicitly stated.</p>
</div>
<div class="terms-section">
<h2>5. Timelines</h2>
<p>5.1. Project timelines are estimates based on the information available at the start of the project.</p>
<p>5.2. Timelines may shift due to:</p>
<ul>
<li>Client delays</li>
<li>Changes in scope</li>
<li>External dependencies (e.g., third-party APIs)</li>
</ul>
<p>5.3. We communicate timeline adjustments promptly and transparently.</p>
</div>
<div class="terms-section">
<h2>6. Intellectual Property</h2>
<p>6.1. All design files, developed applications, workflows, and documentation become your property after full payment for the corresponding phase or project.</p>
<p>6.2. Until payment is complete, all work remains the property of NoBoxDev.</p>
<p>6.3. We may showcase non-confidential, finalised work in our portfolio or marketing materials unless agreed otherwise.</p>
</div>
<div class="terms-section">
<h2>7. Confidentiality</h2>
<p>7.1. Both parties agree to keep all non-public information confidential.</p>
<p>7.2. This includes business information, user data, financials, and technical architecture.</p>
<p>7.3. Confidentiality obligations remain in effect after the project ends.</p>
</div>
<div class="terms-section">
<h2>8. Revisions & Maintenance</h2>
<p>8.1. Revisions are included as specified in the proposal. Additional revisions or redesigns may incur fees.</p>
<p>8.2. Post-launch maintenance, bug fixes, or feature updates are not included unless agreed through a maintenance contract or support plan.</p>
</div>
<div class="terms-section">
<h2>9. Testing & Acceptance</h2>
<p>9.1. We conduct internal testing before delivering any feature or milestone.</p>
<p>9.2. You are responsible for reviewing, testing, and approving deliverables within a reasonable timeframe.</p>
<p>9.3. Approval of deliverables signifies acceptance and allows us to proceed to the next stage.</p>
</div>
<div class="terms-section">
<h2>10. Third-Party Services</h2>
<p>10.1. We may integrate external APIs, plugins, libraries, or software when needed.</p>
<p>10.2. We cannot guarantee the long-term performance, pricing, or availability of third-party services.</p>
<p>10.3. Any costs associated with third-party services are your responsibility.</p>
</div>
<div class="terms-section">
<h2>11. Liability</h2>
<p>11.1. We deliver development and design services to the best of our expertise, but we cannot guarantee uninterrupted uptime or error-free operation.</p>
<p>11.2. We are not liable for:</p>
<ul>
<li>Indirect losses</li>
<li>Lost profits</li>
<li>Damages caused by third-party tools</li>
<li>Misuse of the application</li>
</ul>
<p>11.3. Our total liability is limited to the amount paid for the project phase in question.</p>
</div>
<div class="terms-section">
<h2>12. Termination</h2>
<p>12.1. Either party may terminate the agreement with 30 days' written notice.</p>
<p>12.2. Work completed up to the termination date must be paid in full.</p>
<p>12.3. Upon termination, all access and licenses provided to the client may be suspended until payment is settled.</p>
</div>
<div class="terms-section">
<h2>13. Governing Law</h2>
<p>These terms are governed by the laws of Estonia. In cases where Estonian law does not apply or is not enforceable, Dutch law shall serve as the fallback governing law.</p>
</div>
<div class="terms-section">
<h2>14. Acceptance</h2>
<p>By continuing the project, paying invoices, or approving deliverables, you confirm acceptance of these Terms & Conditions.</p>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<a href="/" class="footer-logo">
<img src="assets/images/logo-footer.svg" alt="No Box Dev" class="footer-logo-img">
</a>
</div>
<div class="footer-nav">
<h4 class="footer-nav-title">Navigation</h4>
<ul class="footer-nav-list">
<li><a href="index.html#services">Services</a></li>
<li><a href="index.html#case-studies">Case Studies</a></li>
<li><a href="index.html#how-we-work">How we work</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p class="footer-copyright">© 2026 No Box Dev. All rights reserved.</p>
<div class="footer-legal">
<a href="faq.html">FAQ</a>
<a href="terms.html">Terms & Conditions</a>
<a href="privacy.html">Privacy Policy</a>
</div>
</div>
</div>
<!-- Decorative polygon -->
<div class="footer-decoration">
<img src="assets/images/polygon-footer.svg" alt="">
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>