-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
71 lines (65 loc) · 2.75 KB
/
privacy.html
File metadata and controls
71 lines (65 loc) · 2.75 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Privacy Policy - OpenLens</title>
<link rel="icon" type="image/png" href="./OpenLens.png" />
<meta name="theme-color" content="#0f1417" />
<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@300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="view-landing">
<nav class="landing-nav">
<a href="index.html" class="nav-brand" style="text-decoration: none; color: inherit; display: flex; align-items: center; gap: 8px;">
<img src="./OpenLens.png" alt="Logo" width="50" height="50" />
<span class="brand-text">OpenLens</span>
</a>
</nav>
<section class="text-content">
<h1 class="page-title">Privacy Policy</h1>
<p class="last-updated">Last updated: March 13, 2026</p>
<div class="prose">
<h2>1. Data Collection & Processing</h2>
<p>
OpenLens is a <strong>client-side heavy application</strong>. All image processing (cropping, resizing, rotation, conversion) happens directly in your browser using local JavaScript APIs.
</p>
<p>
<strong>We do not upload your images to any server.</strong> Your files never leave your device.
</p>
<h2>2. Third-Party Services</h2>
<p>
This site is hosted on GitHub Pages or static hosting. We do not use tracking cookies or analytics scripts that invade your privacy.
</p>
<p>
For background removal functionality, the application downloads a machine learning model (ONNX runtime) once to your browser cache. This model runs locally on your device.
</p>
<h2>3. Local Storage</h2>
<p>
Technical data (such as temporary blob URLs) exists only in your browser's memory for the duration of your session and is cleared when you close the tab.
</p>
<h2>4. Contact</h2>
<p>
For any questions, please check our GitHub repository.
</p>
</div>
</section>
<footer class="landing-footer">
<div class="footer-content">
<span>© 2026 OpenLens</span>
<div class="footer-links">
<a href="privacy.html">Privacy</a>
<a href="changelog.html">Changelog</a>
<a href="license.html">AGPL License</a>
</div>
</div>
</footer>
</div>
</body>
</html>