forked from Jakubantalik/transitions.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
590 lines (558 loc) · 23.3 KB
/
Copy pathterms.html
File metadata and controls
590 lines (558 loc) · 23.3 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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="color-scheme" content="light dark" />
<title>Terms & License - Transitions.dev</title>
<meta
name="description"
content="Terms and license for Transitions.dev: using the transitions, the Pro subscription and Team plans, billing and refunds, the Refine tool, no warranty, and the MIT license."
/>
<meta name="author" content="Transitions.dev" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#fdfdfd" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#070707" media="(prefers-color-scheme: dark)" />
<link rel="canonical" href="https://transitions.dev/terms.html" />
<link rel="icon" href="assets/favicon-light-mode.png?v=4" type="image/png" sizes="any" />
<link rel="icon" href="assets/favicon-light-mode.png?v=4" media="(prefers-color-scheme: light)" type="image/png" />
<link rel="icon" href="assets/favicon-darkmode.png?v=4" media="(prefers-color-scheme: dark)" type="image/png" />
<link rel="apple-touch-icon" href="assets/favicon-light-mode.png?v=4" />
<link rel="manifest" href="site.webmanifest" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Transitions.dev" />
<meta property="og:url" content="https://transitions.dev/terms.html" />
<meta property="og:title" content="Terms & License - Transitions.dev Refine" />
<meta property="og:description" content="Beta software, your agent token/credit usage, agent-written code changes, no warranty, and the MIT license." />
<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=Inter:wght@400;500;600&family=Roboto+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
<script>
// Apply theme before first paint to avoid FOUC: a theme chosen via the
// toggle on other pages (persisted to localStorage as "tdev:theme")
// wins over system preference so it carries across the site.
(function () {
try {
var stored = localStorage.getItem("tdev:theme");
var dark = stored
? stored === "dark"
: (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches);
if (dark) document.documentElement.setAttribute("data-theme", "dark");
} catch (e) {}
})();
</script>
<style>
:root {
color-scheme: light;
--bg: #fdfdfd;
--text: #0d0d0d;
--text-muted: #6c6c6c;
--text-subtle: #767676;
--text-faint: #8f8f8f;
--text-footer-name: #4a4a4a;
--rule: rgba(0, 0, 0, 0.08);
--code-bg: rgba(0, 0, 0, 0.04);
--code-text: #3a3a3a;
--link: #0d0d0d;
--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Helvetica, Arial, sans-serif;
--font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
Consolas, monospace;
}
html[data-theme="dark"] {
color-scheme: dark;
--bg: #121212;
--text: #ffffff;
--text-muted: rgba(202, 202, 202, 0.7);
--text-subtle: #767676;
--text-faint: #8f8f8f;
--text-footer-name: #e9e9e9;
--rule: rgba(255, 255, 255, 0.1);
--code-bg: rgba(255, 255, 255, 0.08);
--code-text: #d6d6d6;
--link: #ffffff;
}
* { box-sizing: border-box; }
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}
body {
margin: 0;
background: var(--bg);
color: var(--text);
font-family: var(--font-sans);
transition: background-color 0.2s ease, color 0.2s ease;
}
.skip-link {
position: absolute;
top: -100%;
left: 16px;
z-index: 200;
padding: 12px 20px;
border-radius: 8px;
background: var(--text);
color: var(--bg);
font-size: 14px;
font-weight: 500;
text-decoration: none;
}
.skip-link:focus { top: 16px; }
.wrap {
max-width: 680px;
margin: 0 auto;
width: 100%;
padding: 0 24px;
}
/* ─── Header ──────────────────────────────────────────────── */
.doc-head {
padding: 80px 0 0;
}
.eyebrow {
margin: 0 0 14px;
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 18px;
font-weight: 500;
letter-spacing: -0.01em;
color: var(--text-muted);
}
.eyebrow a {
color: inherit;
text-decoration: none;
}
.eyebrow a:hover { color: var(--text); }
.beta-badge {
display: inline-flex;
align-items: center;
justify-content: center;
height: 22px;
padding: 0 8px;
border-radius: 50px;
font-size: 13px;
font-weight: 500;
line-height: 16px;
white-space: nowrap;
color: rgba(94, 94, 94, 0.8);
background: rgba(0, 0, 0, 0.03);
}
html[data-theme="dark"] .beta-badge {
color: rgba(237, 237, 237, 0.7);
background: rgba(255, 255, 255, 0.08);
}
h1 {
margin: 0;
font-size: 34px;
font-weight: 600;
letter-spacing: -0.02em;
line-height: 1.15;
}
.updated {
margin: 12px 0 0;
font-size: 13px;
color: var(--text-faint);
}
.lede {
margin: 28px 0 0;
font-size: 16px;
line-height: 1.65;
color: var(--text-muted);
}
/* ─── Sections ────────────────────────────────────────────── */
section {
padding: 36px 0 0;
}
section + section {
margin-top: 36px;
border-top: 1px solid var(--rule);
}
h2 {
margin: 0 0 12px;
font-size: 19px;
font-weight: 600;
letter-spacing: -0.01em;
}
p {
margin: 0 0 14px;
font-size: 15px;
line-height: 1.7;
color: var(--text-muted);
}
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }
a { color: var(--link); }
ul {
margin: 0 0 14px;
padding-left: 20px;
}
li {
font-size: 15px;
line-height: 1.7;
color: var(--text-muted);
margin-bottom: 6px;
}
code {
font-family: var(--font-mono);
font-size: 0.86em;
padding: 2px 6px;
border-radius: 6px;
background: var(--code-bg);
color: var(--code-text);
}
.license-block {
margin: 0;
font-size: 14px;
line-height: 1.7;
color: var(--text-muted);
}
.license-block p { font-size: 14px; }
/* ─── Footer (Figma 2332:3466) ────────────────────────────── */
.footer {
/* Matches the homepage card grid's rendered width (320px × 3 +
24px × 2 gaps = 1008px) so the footer's edges line up with the
content above it, site-wide. */
width: 100%;
max-width: 1008px;
margin: 96px auto 0;
padding: 0 0 40px;
font-family: var(--font-sans);
font-size: 13px;
line-height: 18.2px;
text-align: left;
display: flex;
flex-direction: column;
gap: 25px;
}
.footer-top {
display: flex;
justify-content: space-between;
gap: 48px;
flex-wrap: wrap;
}
.footer-brand {
display: flex;
flex-direction: column;
gap: 10px;
max-width: 260px;
}
.footer-brand-logo {
display: inline-flex;
align-items: center;
gap: 4px;
opacity: 0.7;
text-decoration: none;
color: var(--text);
/* Same hover as the top-bar brand link: mark spins, whole
lockup gets a touch of scale (transitions live on the
shared .brand-mark rule; only the trigger + scale live here). */
transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 150ms ease;
transform-origin: center;
}
.footer-brand-logo:hover { opacity: 1; transform: scale(1.02); }
.footer-brand-logo:hover .brand-mark { transform: rotate(60deg); }
@media (prefers-reduced-motion: reduce) {
.footer-brand-logo { transition: opacity 150ms ease; }
.footer-brand-logo:hover { transform: none; }
.footer-brand-logo:hover .brand-mark { transform: none; }
}
/* This page has no top-bar brand link, so the footer logo needs its
own copy of the sizing rules that other pages share from the nav. */
.brand-mark {
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
color: var(--icon-color, var(--text));
transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-mark svg { width: 18px; height: 20.295px; display: block; }
.brand-word {
font-size: 15px;
font-weight: 500;
line-height: 1;
letter-spacing: -0.01em;
white-space: nowrap;
}
.brand-word-dim { color: var(--text-muted); }
.footer-tagline {
margin: 0;
color: var(--text-muted);
}
.footer-cols {
display: flex;
gap: 56px;
}
.footer-col {
display: flex;
flex-direction: column;
gap: 8px;
}
.footer-col-title {
margin: 0 0 2px;
font-weight: 500;
color: var(--text-muted);
}
.footer-col a {
color: var(--text-muted);
text-decoration: none;
transition: color 150ms ease;
}
.footer-col a:hover { color: var(--text); }
.footer-credit { margin: 0; }
.footer-muted { color: var(--text-faint); }
.footer-name {
color: var(--text-footer-name);
text-decoration: none;
margin-left: 4px;
}
.footer-name:hover { color: #0d0d0d; text-decoration: none; }
html[data-theme="dark"] .footer-name:hover { color: #ffffff; text-decoration: none; }
@media (max-width: 720px) {
.footer-top { flex-direction: column; gap: 32px; }
.footer-cols { gap: 40px; flex-wrap: wrap; row-gap: 32px; }
}
@media (max-width: 600px) {
.doc-head { padding-top: 56px; }
h1 { font-size: 28px; }
}
</style>
</head>
<body>
<a class="skip-link" href="#main">Skip to content</a>
<main id="main">
<div class="wrap">
<header class="doc-head">
<p class="eyebrow"><a href="/">Transitions.dev</a></p>
<h1>Terms & License</h1>
<p class="updated">Last updated July 2026</p>
<p class="lede">
These terms cover using Transitions.dev — the free transition library, the
Transitions Pro subscription and Team plans, and the Refine tool. By using the
site or subscribing you agree to them. In short: use the transitions in as many
projects as you like, including commercial ones; a subscription bills until you
cancel; and what you've already downloaded stays yours.
</p>
</header>
<section>
<h2>Using the transitions</h2>
<p>
Every transition — free or Pro — is a snippet of CSS (and optional React) you paste
into your own project. Once you have access to a transition, you may use it in
<strong>unlimited personal and commercial projects</strong>, modify it freely, and
ship it to your users as part of your product.
</p>
<p>
The one thing you may not do is <strong>redistribute the library itself</strong> — you
can't repackage, resell, or publish the collection (or a substantial part of it) as a
competing transitions library, template pack, or component kit. Use them in your
products, not as a product of their own.
</p>
</section>
<section>
<h2>Transitions Pro</h2>
<p>
Transitions Pro is a paid subscription that unlocks the premium transitions
(CSS and React), delivery through the CLI and agent skill, and every new Pro
transition and update released while your plan is active.
</p>
<ul>
<li><strong>Billing & renewal.</strong> Pro is billed monthly or yearly through Stripe and <strong>renews automatically</strong> at the end of each period until you cancel. Prices are shown at checkout.</li>
<li><strong>Lifetime plans.</strong> Solo and Team lifetime plans are a <strong>one-time payment</strong> — no renewal, nothing to cancel. They include ongoing access and every future transition for as long as the service operates. Team lifetime includes a fixed 5 seats.</li>
<li><strong>Updates.</strong> While your plan is active you receive new Pro transitions and improvements at no extra charge.</li>
<li><strong>You keep what you've downloaded.</strong> Cancelling stops future access, downloads, and updates — but any files already added to your projects continue to work and remain licensed under the terms above.</li>
</ul>
</section>
<section>
<h2>Cancellation & refunds</h2>
<p>
You can cancel any time from your <a href="/account.html">account</a>. Your plan stays
active until the end of the period you've already paid for; we don't prorate partial
periods. If something's wrong — a double charge, a technical problem that stops you
using Pro — email <a href="mailto:jakubja@gmail.com">jakubja@gmail.com</a> and we'll make
it right, including a refund where fair. EU/EEA consumers may have a statutory right of
withdrawal; by starting to download Pro content immediately you acknowledge digital
delivery begins at once.
</p>
</section>
<section>
<h2>Team plans</h2>
<p>
A Team plan buys a set number of <strong>seats</strong>, billed per seat. The team owner
invites members up to the seat count (a pending invitation reserves a seat), manages
roles, and can add or remove seats, which adjusts billing accordingly.
</p>
<ul>
<li>Each member gets full Pro access while they belong to an active team.</li>
<li>Removing a member, or the team's subscription ending, ends that person's Pro access — again, already-downloaded files keep working.</li>
<li>The owner is responsible for who they invite and for the team's billing.</li>
</ul>
</section>
<section>
<h2>Your account</h2>
<p>
Accounts use passwordless email sign-in. Keep access to your email secure — anyone who
can receive your sign-in link can access your account. Don't share credentials, probe or
abuse the service, attempt to bypass the entitlement checks, or scrape the Pro content.
We may suspend accounts that do. How we handle your data is described in our
<a href="/privacy.html">Privacy Policy</a>.
</p>
</section>
<section>
<h2>Refine tool <span class="beta-badge">Beta</span></h2>
<p>
Refine is a free, open-source tool that connects your own AI coding agent to a live
timeline panel. The following terms apply specifically to it.
</p>
<p>
Refine is an early <strong>Beta</strong>. It is provided for
evaluation and everyday use, but features, commands, the panel, and
its behavior may change, regress, or be removed at any time without
notice. We make no guarantee that it will be available, stable, error-
free, or fit for any particular purpose.
</p>
</section>
<p>
Refine is an early <strong>Beta</strong>. It is provided for
evaluation and everyday use, but features, commands, the panel, and
its behavior may change, regress, or be removed at any time without
notice. We make no guarantee that it will be available, stable, error-
free, or fit for any particular purpose.
</p>
</section>
<section>
<h2>Your agent token & credit usage</h2>
<p>
Refine does not run its own AI model. It triggers
<strong>your own</strong> AI coding agent (for example Cursor, Claude
Code, or Codex) running in your environment. Every Refine click, and
any persistent session started with
<code>npx transitions-refine live</code> or <code>/refine live</code>,
consumes <strong>your</strong> provider's tokens, credits, or quota -
including while a live session sits idle and keeps polling.
</p>
<p>
You are solely responsible for that consumption and any associated
costs. Transitions.dev is not responsible for, and will not reimburse,
any tokens, credits, fees, overages, or charges incurred through your
use of the tool. Stop a live session when you are done (say
<code>stop refine</code> or run <code>npx transitions-refine stop</code>)
to avoid idle credit usage.
</p>
</section>
<section>
<h2>The agent changes your code</h2>
<p>
When you accept or apply a suggestion, the agent writes changes
directly into the source files of your project. Suggestions are
generated by an AI agent and may be incorrect, incomplete, or
unsuitable for your codebase.
</p>
<ul>
<li>Use version control and review every change (for example via <code>git diff</code>) before committing.</li>
<li>Keep backups of any work that matters to you.</li>
<li>You are responsible for everything that is committed to and shipped from your repository.</li>
</ul>
<p>You use this code-writing capability at your own risk.</p>
</section>
<section>
<h2>No warranty & limitation of liability</h2>
<p>
THE SOFTWARE IS PROVIDED <strong>"AS IS"</strong>, WITHOUT WARRANTY OF
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
NONINFRINGEMENT.
</p>
<p>
To the maximum extent permitted by law, the authors and copyright
holders shall not be liable for any claim, damages, or other
liability - whether direct, indirect, incidental, or consequential,
and including lost work, lost data, or lost tokens/credits - arising
from or in connection with the software or its use.
</p>
</section>
<section>
<h2>Open-source license</h2>
<p>
The tooling — the <strong>Refine tool</strong> and the <code>transitions-pro</code> CLI —
is released under the MIT License below. The transitions you install are licensed under
<a href="#">Using the transitions</a> above, not the MIT terms.
</p>
<div class="license-block">
<p>Copyright © 2026 Jakub Antalik / Transitions.dev</p>
<p>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
</p>
<p>
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
</p>
<p>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
</p>
</div>
</section>
<footer class="footer">
<div class="footer-top">
<div class="footer-brand">
<a class="footer-brand-logo" href="/" aria-label="Transitions.dev home">
<span class="brand-mark" aria-hidden="true">
<svg viewBox="0 0 18 20.2947" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 0L12.5409 1.99176L11.5604 3.73491L10 2.8572V5.14735H8V2.8572L6.43962 3.73491L5.45909 1.99176L9 0ZM14.3613 3.01571L18 5.0625V9.14735H16V7.3794L14.0359 8.51337L13.0359 6.78132L14.9804 5.65867L13.3807 4.75886L14.3613 3.01571ZM4.61925 4.75887L3.01961 5.65867L4.9641 6.78132L3.9641 8.51337L2 7.3794L2 9.14735H0L1.54972e-06 5.0625L3.63873 3.01572L4.61925 4.75887ZM2 11.1473V12.9153L3.9641 11.7813L4.9641 13.5134L3.01961 14.636L4.61925 15.5358L3.63873 17.279L3.57628e-07 15.2322V11.1473H2ZM18 11.1473V15.2322L14.3613 17.279L13.3807 15.5358L14.9804 14.636L13.0359 13.5134L14.0359 11.7813L16 12.9153V11.1473H18ZM10 15.1473V17.4375L11.5604 16.5598L12.5409 18.3029L9 20.2947L5.45908 18.3029L6.43961 16.5598L8 17.4375V15.1473H10Z" fill="currentColor"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0981 9.51337L10 10.7247V13.1474H8V10.7247L5.90192 9.51337L6.90192 7.78132L9 8.99265L11.0981 7.78132L12.0981 9.51337Z" fill="currentColor"/>
</svg>
</span>
<span class="brand-word"><span class="brand-word-strong">Transitions</span><span class="brand-word-dim">.dev</span></span>
</a>
<p class="footer-tagline">Collection of the most essential UI transitions for web apps</p>
</div>
<nav class="footer-cols" aria-label="Footer">
<div class="footer-col">
<p class="footer-col-title">Site</p>
<a href="/">Home</a>
<a href="/">Transitions</a>
<a href="/skill.html">Skill</a>
<a href="/refine.html">Refine tool</a>
<a href="/pro.html">Get Pro</a>
</div>
<div class="footer-col">
<p class="footer-col-title">Docs</p>
<a href="/skill.html">Introduction</a>
<a href="/skill.html#installation">Installation</a>
<a href="/skill.html">Accessibility</a>
</div>
<div class="footer-col">
<p class="footer-col-title">Legal & Account</p>
<a href="/pro.html" id="footer-signin">Sign in</a>
<a href="/terms.html">Terms</a>
<a href="/privacy.html">Privacy</a>
<a href="mailto:jakubja@gmail.com">Contact</a>
</div>
</nav>
</div>
<p class="footer-credit"><span class="footer-muted">Created by</span><a class="footer-name" href="https://x.com/jakubantalik" target="_blank" rel="noopener noreferrer">Jakub Antalik</a></p>
</footer>
</div>
</main>
</body>
</html>