-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
393 lines (350 loc) · 15.9 KB
/
privacy.html
File metadata and controls
393 lines (350 loc) · 15.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
(function() {
try {
var t = localStorage.getItem('sceneview-theme');
if (t !== 'dark' && t !== 'light') {
t = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
}
document.documentElement.setAttribute('data-theme', t);
} catch(e) {
document.documentElement.setAttribute('data-theme', 'dark');
}
})();
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy — SceneView</title>
<meta name="description" content="Privacy Policy for the SceneView Demo app. No personal data collected, no tracking, no analytics.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://sceneview.github.io/privacy.html">
<meta property="og:title" content="Privacy Policy — SceneView">
<meta property="og:description" content="SceneView Demo does not collect, store, or transmit any personal data.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://sceneview.github.io/privacy.html">
<meta property="og:image" content="https://sceneview.github.io/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Privacy Policy — SceneView">
<meta name="twitter:description" content="SceneView Demo privacy policy. No personal data collected.">
<meta name="twitter:image" content="https://sceneview.github.io/og-image.png">
<meta name="theme-color" content="#005bc1">
<meta property="og:site_name" content="SceneView">
<meta property="og:locale" content="en_US">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="styles.css">
<style>
/* ===== PRIVACY PAGE ===== */
.privacy-page {
padding-top: var(--nav-height);
}
/* Hero */
.privacy-hero {
padding: 80px 0 48px;
text-align: center;
position: relative;
overflow: hidden;
}
.privacy-hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0,91,193,0.08) 0%, transparent 70%);
pointer-events: none;
}
[data-theme="dark"] .privacy-hero::before {
background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(141,179,255,0.06) 0%, transparent 70%);
}
.privacy-hero__container {
max-width: var(--container-max);
margin: 0 auto;
padding: 0 var(--container-padding);
}
.privacy-hero__title {
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 800;
letter-spacing: -0.04em;
line-height: 1.08;
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 12px;
}
.privacy-hero__updated {
font-size: 0.9rem;
color: var(--color-on-surface-variant);
}
/* Content */
.privacy-content {
max-width: 720px;
margin: 0 auto;
padding: 48px var(--container-padding) 80px;
}
.privacy-content__summary {
font-size: 1.1rem;
font-weight: 600;
color: var(--color-on-surface);
background: var(--color-surface-container-low);
border: 1px solid var(--color-outline-variant);
border-radius: 12px;
padding: 20px 24px;
margin-bottom: 48px;
line-height: 1.6;
}
.privacy-content h2 {
font-size: 1.25rem;
font-weight: 700;
letter-spacing: -0.01em;
margin-top: 40px;
margin-bottom: 12px;
padding-bottom: 8px;
border-bottom: 1px solid var(--color-outline-variant);
color: var(--color-on-surface);
}
.privacy-content h2:first-of-type {
margin-top: 0;
}
.privacy-content h3 {
font-size: 1rem;
font-weight: 600;
margin-top: 24px;
margin-bottom: 8px;
color: var(--color-on-surface);
}
.privacy-content p {
font-size: 0.95rem;
color: var(--color-on-surface-variant);
line-height: 1.7;
margin-bottom: 12px;
}
.privacy-content ul {
padding-left: 24px;
margin-bottom: 16px;
list-style: disc;
}
.privacy-content li {
font-size: 0.95rem;
color: var(--color-on-surface-variant);
line-height: 1.7;
margin-bottom: 8px;
}
.privacy-content table {
border-collapse: collapse;
width: 100%;
margin: 16px 0;
font-size: 0.9rem;
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--color-outline-variant);
}
.privacy-content th,
.privacy-content td {
padding: 12px 16px;
text-align: left;
color: var(--color-on-surface-variant);
border-bottom: 1px solid var(--color-outline-variant);
}
.privacy-content th {
background: var(--color-surface-container-low);
font-weight: 600;
color: var(--color-on-surface);
}
.privacy-content tr:last-child td {
border-bottom: none;
}
.privacy-content a {
color: var(--color-primary);
transition: opacity var(--duration-short);
}
.privacy-content a:hover {
text-decoration: underline;
opacity: 0.85;
}
/* Responsive */
@media (max-width: 768px) {
.privacy-hero { padding: 48px 0 32px; }
.privacy-content { padding: 32px var(--container-padding) 64px; }
}
@media (max-width: 480px) {
.privacy-hero { padding: 32px 0 24px; }
.privacy-content { padding: 24px var(--container-padding) 48px; }
.privacy-content table { font-size: 0.8rem; }
.privacy-content th,
.privacy-content td { padding: 8px 10px; }
}
</style>
<link href="assets/fonts/fonts.css" rel="stylesheet">
</head>
<body>
<!-- ===== NAVIGATION ===== -->
<nav class="nav" id="nav">
<div class="nav__container">
<a href="/" class="nav__brand" aria-label="SceneView SDK — home">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="28" height="28" aria-hidden="true" style="flex-shrink:0">
<defs>
<linearGradient id="navTopGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="#8AB4F8"/><stop offset="100%" stop-color="#42A5F5"/></linearGradient>
<linearGradient id="navRightGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="#4A90D9"/><stop offset="100%" stop-color="#1A73E8"/></linearGradient>
<linearGradient id="navLeftGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="#1A73E8"/><stop offset="100%" stop-color="#0D47A1"/></linearGradient>
</defs>
<polygon points="256,272 122,194 122,340 256,418" fill="url(#navLeftGrad)"/>
<polygon points="256,272 390,194 390,340 256,418" fill="url(#navRightGrad)"/>
<polygon points="256,126 390,204 256,282 122,204" fill="url(#navTopGrad)"/>
<polyline points="96,120 96,82 134,82" fill="none" stroke="#1A73E8" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="416,120 416,82 378,82" fill="none" stroke="#1A73E8" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="96,392 96,430 134,430" fill="none" stroke="#1A73E8" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="416,392 416,430 378,430" fill="none" stroke="#1A73E8" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span>SceneView SDK</span>
</a>
<button class="nav__hamburger" id="hamburger" aria-label="Toggle menu">
<span></span><span></span><span></span>
</button>
<div class="nav__links" id="navLinks">
<a href="/#features" class="nav__link">Features</a>
<a href="/showcase.html" class="nav__link">Showcase</a>
<a href="/playground.html" class="nav__link">Playground</a>
<a href="/docs.html" class="nav__link" target="_blank" rel="noopener">Docs</a>
<button class="nav__theme-toggle" id="themeToggle" aria-label="Toggle dark mode">
<svg class="icon-sun" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="5"/><path d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"/>
</svg>
<svg class="icon-moon" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>
</svg>
</button>
</div>
<div class="nav__actions">
<a href="https://github.com/sceneview/sceneview" class="nav__icon-btn" target="_blank" rel="noopener" aria-label="View on GitHub">
<svg viewBox="0 0 24 24" width="20" height="20" fill="currentColor" aria-hidden="true">
<path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/>
</svg>
</a>
<button class="nav__hamburger nav__hamburger--mobile" id="hamburgerMobile" aria-label="Toggle menu">
<span></span><span></span><span></span>
</button>
</div>
</div>
</nav>
<main class="privacy-page">
<!-- ===== HERO ===== -->
<section class="privacy-hero">
<div class="privacy-hero__container">
<h1 class="privacy-hero__title reveal">Privacy Policy</h1>
<p class="privacy-hero__updated reveal"><strong>SceneView Demo</strong> — Last updated: March 27, 2026</p>
</div>
</section>
<!-- ===== CONTENT ===== -->
<div class="privacy-content">
<div class="privacy-content__summary reveal">
SceneView Demo does not collect, store, or transmit any personal data.
</div>
<h2>Data Collection</h2>
<ul>
<li><strong>No personal data collected</strong> — The app does not collect names, email addresses, IP addresses, or any other personally identifiable information.</li>
<li><strong>No analytics or tracking</strong> — No analytics SDKs, telemetry, fingerprinting, or behavioral tracking of any kind.</li>
<li><strong>No network requests</strong> — The app operates entirely offline. All 3D models, textures, and environments are bundled locally.</li>
<li><strong>No accounts</strong> — The app does not require or support user accounts.</li>
</ul>
<h2>Camera Usage (AR Features)</h2>
<ul>
<li>The app uses the device camera <strong>exclusively</strong> for augmented reality features powered by Google ARCore.</li>
<li>Camera data is processed <strong>locally on-device</strong> in real time for plane detection and object placement.</li>
<li><strong>No camera images or video are stored, recorded, or transmitted</strong> to any server.</li>
<li>Camera access is only requested when the user navigates to the AR tab.</li>
</ul>
<h2>Third-Party SDKs</h2>
<table>
<thead>
<tr><th>SDK</th><th>Purpose</th><th>Data collected</th></tr>
</thead>
<tbody>
<tr><td>Google Filament</td><td>3D rendering engine</td><td>None</td></tr>
<tr><td>Google ARCore</td><td>Augmented reality</td><td>Camera processed locally, no data sent</td></tr>
<tr><td>Jetpack Compose</td><td>UI framework</td><td>None</td></tr>
</tbody>
</table>
<h2>Data Sharing</h2>
<p>No data is shared with third parties. No data is sold or used for advertising.</p>
<h2>Children's Privacy</h2>
<p>The app does not knowingly collect any data from children under 13. The app is rated for ages 13 and older.</p>
<h2>Changes to This Policy</h2>
<p>We may update this Privacy Policy from time to time. Changes will be posted on this page with an updated date.</p>
<h2>Contact</h2>
<ul>
<li><strong>Website:</strong> <a href="https://sceneview.github.io">sceneview.github.io</a></li>
<li><strong>GitHub:</strong> <a href="https://github.com/sceneview/sceneview">github.com/sceneview/sceneview</a></li>
</ul>
</div>
</main>
<!-- ===== FOOTER ===== -->
<footer class="footer">
<div class="footer__container">
<div class="footer__grid">
<div class="footer__brand-col">
<div class="footer__brand-name">SceneView SDK</div>
<p class="footer__brand-desc">The architectural logic for building high-performance 3D spatial experiences across all modern platforms.</p>
<div class="footer__copyright">© 2026 SceneView SDK. Architectural Logic.</div>
</div>
<div class="footer__col">
<h4 class="footer__col-title">Documentation</h4>
<ul class="footer__col-list">
<li><a href="/docs.html" target="_blank" rel="noopener">Examples</a></li>
<li><a href="/showcase.html">Showcase</a></li>
</ul>
</div>
<div class="footer__col">
<h4 class="footer__col-title">Community</h4>
<ul class="footer__col-list">
<li><a href="https://github.com/sceneview/sceneview" target="_blank" rel="noopener">GitHub</a></li>
<li><a href="https://discord.gg/sceneview" target="_blank" rel="noopener">Discord</a></li>
<li><a href="https://twitter.com/nicoadams_" target="_blank" rel="noopener">Twitter</a></li>
</ul>
</div>
<div class="footer__col">
<h4 class="footer__col-title">Legal</h4>
<ul class="footer__col-list">
<li><a href="/privacy.html">Privacy</a></li>
<li><a href="https://github.com/sceneview/sceneview/blob/main/LICENSE" target="_blank" rel="noopener">Terms</a></li>
<li><a href="https://github.com/sceneview/sceneview/blob/main/LICENSE" target="_blank" rel="noopener">License</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
<!-- Scroll reveal -->
<script>
// Scroll reveal
(function() {
var reveals = document.querySelectorAll('.reveal');
if (!reveals.length) return;
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
reveals.forEach(function(el) { el.classList.add('revealed'); });
return;
}
function revealVisible() {
reveals.forEach(function(el) {
if (el.getBoundingClientRect().top < window.innerHeight + 100) el.classList.add('revealed');
});
}
revealVisible();
if ('IntersectionObserver' in window) {
var obs = new IntersectionObserver(function(entries) {
entries.forEach(function(e) {
if (e.isIntersecting) { e.target.classList.add('revealed'); obs.unobserve(e.target); }
});
}, { threshold: 0.01, rootMargin: '0px 0px 200px 0px' });
reveals.forEach(function(el) { if (!el.classList.contains('revealed')) obs.observe(el); });
}
var t; window.addEventListener('scroll', function() { clearTimeout(t); t = setTimeout(revealVisible, 50); }, { passive: true });
setTimeout(function() { reveals.forEach(function(el) { el.classList.add('revealed'); }); }, 3000);
})();
</script>
</body>
</html>