-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
643 lines (563 loc) · 21.5 KB
/
Copy pathsupport.html
File metadata and controls
643 lines (563 loc) · 21.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
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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
========================================================================================
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support | MatrixReview</title>
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Share+Tech+Mono&display=swap" rel="stylesheet">
<style>
:root {
--bg-black: #050505;
--green-bright: #00ff41;
--green-mid: #00cc33;
--green-dim: #00aa2a;
--green-glow: rgba(0, 255, 65, 0.08);
--green-glow-strong: rgba(0, 255, 65, 0.15);
--text-primary: #e0e0e0;
--text-muted: #888;
--border-green: rgba(0, 255, 65, 0.12);
--border-green-hover: rgba(0, 255, 65, 0.3);
--bg-card: #0a0a0a;
--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--font-mono: 'Share Tech Mono', 'Fira Code', monospace;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--bg-black);
color: var(--text-primary);
font-family: var(--font-body);
line-height: 1.7;
min-height: 100vh;
}
#matrix-bg {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
z-index: 0;
opacity: 0.225;
}
.topnav {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(5, 5, 5, 0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border-green);
padding: 16px 0;
}
.topnav .container {
max-width: 1100px;
margin: 0 auto;
padding: 0 24px;
display: flex;
align-items: center;
justify-content: space-between;
}
.topnav-logo {
font-family: var(--font-mono);
font-size: 1.15rem;
color: var(--green-bright);
text-decoration: none;
letter-spacing: 0.08em;
}
.topnav-links { display: flex; gap: 28px; align-items: center; }
.topnav-links a {
color: var(--text-muted);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s;
}
.topnav-links a:hover { color: var(--green-bright); }
.topnav-cta {
background: var(--green-bright) !important;
color: #000 !important;
font-weight: 600 !important;
padding: 8px 20px;
border-radius: 6px;
font-size: 0.85rem !important;
transition: box-shadow 0.3s, transform 0.2s;
}
.topnav-cta:hover {
box-shadow: 0 0 24px var(--green-glow-strong);
transform: translateY(-1px);
}
.container {
max-width: 700px;
margin: 0 auto;
padding: 0 24px;
}
.page-content {
position: relative;
z-index: 1;
padding: 80px 0 120px;
}
.section-eyebrow {
font-family: var(--font-mono);
font-size: 0.95rem;
color: var(--green-mid);
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 12px;
}
h1 {
font-size: clamp(1.8rem, 3.5vw, 2.4rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: 16px;
}
.page-subtitle {
color: var(--text-muted);
font-size: 1.05rem;
line-height: 1.7;
margin-bottom: 48px;
}
h2 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 12px;
margin-top: 48px;
color: var(--green-bright);
font-family: var(--font-mono);
font-size: 1rem;
letter-spacing: 0.05em;
}
.support-card {
background: var(--bg-card);
border: 1px solid var(--border-green);
border-radius: 12px;
padding: 24px 28px;
margin-bottom: 20px;
transition: border-color 0.2s;
}
.support-card:hover {
border-color: var(--border-green-hover);
}
.support-card h3 {
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 8px;
}
.support-card p {
color: var(--text-muted);
font-size: 0.95rem;
line-height: 1.7;
}
.support-card a {
color: var(--green-bright);
text-decoration: none;
}
.support-card a:hover {
text-decoration: underline;
}
.divider {
height: 1px;
background: var(--border-green);
margin: 48px 0;
}
.form-group {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 20px;
}
.form-group label {
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--green-mid);
letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
background: var(--bg-card);
border: 1px solid var(--border-green);
border-radius: 8px;
padding: 14px 16px;
color: var(--text-primary);
font-family: var(--font-body);
font-size: 0.95rem;
line-height: 1.6;
transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--green-bright);
box-shadow: 0 0 12px var(--green-glow);
}
.form-group textarea {
min-height: 140px;
resize: vertical;
}
.form-group select {
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300cc33' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 14px center;
}
.form-group select option {
background: #0a0a0a;
color: var(--text-primary);
}
.btn-submit {
display: inline-block;
background: var(--green-bright);
color: #000;
font-weight: 700;
font-size: 1rem;
padding: 16px 40px;
border-radius: 8px;
border: none;
cursor: pointer;
font-family: var(--font-body);
letter-spacing: 0.02em;
transition: box-shadow 0.3s, transform 0.2s;
}
.btn-submit:hover {
box-shadow: 0 0 24px var(--green-glow-strong);
transform: translateY(-2px);
}
.privacy-note {
color: var(--text-muted);
font-size: 0.8rem;
margin-top: 12px;
}
footer {
border-top: 1px solid var(--border-green);
padding: 40px 0;
position: relative;
z-index: 1;
}
.footer-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 24px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
}
.footer-copy {
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--text-muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
color: var(--text-muted);
text-decoration: none;
font-size: 0.85rem;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-bright); }
@media (max-width: 600px) {
.topnav-links { gap: 16px; }
.btn-submit { width: 100%; text-align: center; }
}
</style>
</head>
<body>
<canvas id="matrix-bg"></canvas>
<nav class="topnav">
<div class="container" style="max-width: 1100px;">
<a href="index.html" class="topnav-logo">MatrixReview</a>
<div class="topnav-links">
<a href="index.html">Home</a>
<a href="security.html">Security</a>
<a href="https://github.com/apps/matrixreview" class="topnav-cta">Install Free</a>
</div>
</div>
</nav>
<div class="page-content">
<div class="container">
<p class="section-eyebrow">// Support</p>
<h1>How can we help?</h1>
<p class="page-subtitle">
Report incorrect findings, get help with setup, or reach out about anything else. We read every message.
</p>
<div class="support-card">
<h3>Email us directly</h3>
<p>For any questions, issues, or general support: <a href="mailto:admin@matrixreview.io">admin@matrixreview.io</a></p>
</div>
<div class="support-card">
<h3>Feedback</h3>
<p>Want to share detailed feedback? Use our <a href="feedback.html">feedback form</a>.</p>
</div>
<div class="support-card">
<h3>Installation help</h3>
<p>MatrixReview installs as a GitHub App. Visit <a href="https://github.com/apps/matrixreview">github.com/apps/matrixreview</a> and click Install. Select your repo and open a PR. Setup takes under 2 minutes. If you run into issues, email us.</p>
</div>
<div class="divider"></div>
<h2 id="report">Report an incorrect finding</h2>
<p style="color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem;">
If MatrixReview posted a finding that is wrong, misleading, or not relevant, let us know. This helps us improve the system for everyone.
</p>
<div id="reportForm">
<div class="form-group">
<label>Your name or GitHub handle</label>
<input type="text" id="rname" placeholder="e.g. @yourhandle">
</div>
<div class="form-group">
<label>Repository</label>
<input type="text" id="rrepo" placeholder="e.g. myorg/myrepo">
</div>
<div class="form-group">
<label>PR number</label>
<input type="text" id="rpr" placeholder="e.g. 142">
</div>
<div class="form-group">
<label>What type of issue?</label>
<select id="rtype">
<option value="">Select one</option>
<option value="false-positive">False positive. The finding is wrong.</option>
<option value="wrong-citation">Wrong citation. The doc reference is incorrect.</option>
<option value="duplicate">Duplicate. This was already flagged by another gate.</option>
<option value="irrelevant">Irrelevant. The finding doesn't apply to this PR.</option>
<option value="missing">Missing. A real issue was not caught.</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label>Describe the issue</label>
<textarea id="rdesc" placeholder="Which finding is wrong and why? Be as specific as you can. Include the finding text if possible."></textarea>
</div>
<button class="btn-submit" onclick="submitReport()">Submit Report</button>
<p class="privacy-note">Reports are sent directly to admin@matrixreview.io. Nothing is stored on this page or shared publicly.</p>
</div>
</div>
</div>
<footer>
<div class="footer-inner">
<span class="footer-copy">© 2026 MatrixReview LLC. All rights reserved.</span>
<div class="footer-links">
<a href="privacy.html">Privacy</a>
<a href="security.html">Security</a>
<a href="terms.html">Terms</a>
<a href="mailto:admin@matrixreview.io">Contact</a>
</div>
</div>
</footer>
<script>
// Matrix rain
const c = document.getElementById('matrix-bg');
const ctx = c.getContext('2d');
function resizeCanvas() { c.width = window.innerWidth; c.height = window.innerHeight; }
resizeCanvas();
window.addEventListener('resize', resizeCanvas);
const chars = 'アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヲン0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ<>/{}[];=';
const fontSize = 14;
let columns, drops;
function initDrops() {
columns = Math.floor(c.width / fontSize);
drops = Array.from({length: columns}, () => Math.random() * -100);
}
initDrops();
window.addEventListener('resize', initDrops);
function draw() {
ctx.fillStyle = 'rgba(5, 5, 5, 0.08)';
ctx.fillRect(0, 0, c.width, c.height);
ctx.fillStyle = '#00ff41';
ctx.font = fontSize + 'px monospace';
for (let i = 0; i < drops.length; i++) {
const text = chars[Math.floor(Math.random() * chars.length)];
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > c.height && Math.random() > 0.975) drops[i] = 0;
drops[i]++;
}
}
setInterval(draw, 45);
// Check URL params for pre-filled report
const params = new URLSearchParams(window.location.search);
if (params.get('type') === 'incorrect-finding') {
document.getElementById('report').scrollIntoView({ behavior: 'smooth' });
}
// Report submission
function submitReport() {
const name = document.getElementById('rname').value.trim();
const repo = document.getElementById('rrepo').value.trim();
const pr = document.getElementById('rpr').value.trim();
const type = document.getElementById('rtype').value;
const desc = document.getElementById('rdesc').value.trim();
if (!name) { alert('Please enter your name or GitHub handle.'); return; }
if (!desc) { alert('Please describe the issue.'); return; }
const subject = encodeURIComponent('Incorrect Finding Report from ' + name);
const body = encodeURIComponent(
'MATRIXREVIEW INCORRECT FINDING REPORT\n' +
'=====================================\n\n' +
'Reporter: ' + name + '\n' +
'Repository: ' + (repo || 'Not provided') + '\n' +
'PR Number: ' + (pr || 'Not provided') + '\n' +
'Issue Type: ' + (type || 'Not selected') + '\n\n' +
'DESCRIPTION:\n' + desc + '\n'
);
window.location.href = 'mailto:admin@matrixreview.io?subject=' + subject + '&body=' + body;
}
</script>
</body>
</html>
========================================================================================
FILE: terms.html
BYTES_UTF8: 7659
SHA256: bddec12bf803688cd043e117c95ac26415095571f97e17da67fa08ccedeb029a
========================================================================================
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MatrixReview — Terms of Service</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Terms of Service for MatrixReview AI code review.">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<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=Share+Tech+Mono&family=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--green-bright: #00ff41;
--green-mid: #00cc33;
--green-dim: #00991a;
--border-green: rgba(0, 255, 65, 0.12);
--bg-black: #000;
--text-primary: #e0e0e0;
--text-secondary: #999;
--font-mono: 'Share Tech Mono', monospace;
--font-body: 'Outfit', sans-serif;
}
html { scroll-behavior: smooth; }
body {
background: var(--bg-black);
color: var(--text-primary);
font-family: var(--font-body);
line-height: 1.8;
}
.topnav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(0,0,0,0.9); backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border-green); padding: 0 24px;
}
.topnav-inner {
max-width: 1100px; margin: 0 auto; display: flex;
align-items: center; justify-content: space-between; height: 64px;
}
.topnav-brand {
font-family: var(--font-mono); font-size: 1.1rem; color: var(--green-bright);
text-decoration: none; letter-spacing: 0.05em;
}
.topnav-links { display: flex; gap: 24px; }
.topnav-links a {
color: var(--text-secondary); text-decoration: none; font-size: 0.88rem;
font-weight: 500; transition: color 0.2s;
}
.topnav-links a:hover { color: var(--green-bright); }
main {
max-width: 780px; margin: 0 auto; padding: 120px 24px 80px;
}
h1 {
font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 8px;
}
.effective {
font-family: var(--font-mono); font-size: 0.85rem; color: var(--green-mid);
margin-bottom: 40px; display: block;
}
h2 {
font-size: 1.2rem; font-weight: 700; color: #fff; margin-top: 40px; margin-bottom: 12px;
}
p { margin-bottom: 16px; }
ul { margin: 0 0 16px 20px; }
li { margin-bottom: 8px; }
strong { color: #fff; }
a { color: var(--green-bright); }
footer {
border-top: 1px solid var(--border-green); padding: 32px 24px; text-align: center;
}
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--green-bright); }
.footer-copy {
font-family: var(--font-mono); font-size: 0.8rem; color: rgba(0,255,65,0.3);
margin-top: 12px;
}
</style>
</head>
<body>
<nav class="topnav">
<div class="topnav-inner">
<a href="/" class="topnav-brand">MatrixReview</a>
<div class="topnav-links">
<a href="/">Home</a>
<a href="/privacy.html">Privacy</a>
<a href="/security.html">Security</a>
</div>
</div>
</nav>
<main>
<h1>Terms of Service</h1>
<span class="effective">Effective: April 2026</span>
<h2>Service Description</h2>
<p>MatrixReview is an automated code review tool that analyzes pull requests against your team's documentation, API and implementation semantics, security policies, and style guides. The service is provided by MatrixReview ("Provider").</p>
<h2>Acceptance</h2>
<p>By installing the MatrixReview GitHub App, you agree to these terms. If you do not agree, do not install the app.</p>
<h2>Permitted Use</h2>
<ul>
<li>You may use MatrixReview on any GitHub repository where you have administrative access.</li>
<li>You are responsible for the accuracy and appropriateness of the documentation you provide to the system.</li>
<li>You may not use the service to process content that violates applicable law.</li>
</ul>
<h2>Service Limitations</h2>
<ul>
<li>MatrixReview provides automated suggestions, not legal, security, or architectural guarantees.</li>
<li>Findings should be reviewed by qualified team members before acting on them.</li>
<li>The service may experience downtime, rate limits, or processing delays.</li>
<li>AI-generated findings (marked with 💭) are suggestions and may not be accurate.</li>
</ul>
<h2>Intellectual Property</h2>
<ul>
<li>You retain all rights to your code, documentation, and repository content.</li>
<li>The Provider retains all rights to the MatrixReview system, including its architecture, algorithms, and methods.</li>
<li>Review findings generated by the service are provided for your use without restriction.</li>
</ul>
<h2>Data Handling</h2>
<p>See our <a href="/privacy.html">Privacy Policy</a> for details on data collection, storage, and retention, and our <a href="/security.html">Security page</a> for details on encryption, access controls, and compliance posture.</p>
<h2>Data Protection</h2>
<ul>
<li>All customer data is encrypted at rest (AES-256) and in transit (HTTPS/TLS).</li>
<li>Source code is never permanently stored. Repository clones are processed in temporary directories and deleted immediately.</li>
<li>PR diff data is automatically purged after 30 days.</li>
<li>You may request full deletion of all your data at any time.</li>
<li>You may export all your data in a portable JSON format at any time.</li>
<li>A Data Processing Agreement (DPA) is available on request for customers subject to GDPR or similar regulations.</li>
</ul>
<h2>Disclaimer of Warranties</h2>
<p>The service is provided "as is" without warranty of any kind, express or implied. The Provider does not guarantee that the service will identify all issues in your code, nor that findings will be free of false positives.</p>
<h2>Limitation of Liability</h2>
<p>The Provider shall not be liable for any damages arising from the use of MatrixReview, including but not limited to damages from missed security vulnerabilities, incorrect findings, or service interruptions.</p>
<h2>Free Access</h2>
<p>MatrixReview is currently provided free of charge. The Provider reserves the right to modify features, pricing, or availability at any time.</p>
<h2>Termination</h2>
<p>You may terminate your use at any time by uninstalling the GitHub App. The Provider may suspend or terminate access for violation of these terms or for any reason with reasonable notice.</p>
<h2>Changes to Terms</h2>
<p>These terms may be updated. Continued use after changes constitutes acceptance. Material changes will be communicated via the GitHub App or email.</p>
<h2>Contact</h2>
<p>Questions about these terms: <a href="mailto:admin@matrixreview.io">admin@matrixreview.io</a></p>
</main>
<footer>
<div class="footer-links">
<a href="/">Home</a>
<a href="/privacy.html">Privacy</a>
<a href="/terms.html">Terms</a>
<a href="/security.html">Security</a>
<a href="mailto:admin@matrixreview.io">Contact</a>
</div>
<p class="footer-copy">© <script>document.write(new Date().getFullYear())</script> MatrixReview</p>
</footer>
</body>
^ <