-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
76 lines (71 loc) · 3.66 KB
/
Copy pathprivacy.html
File metadata and controls
76 lines (71 loc) · 3.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - AccessWidget</title>
<meta name="description" content="Privacy Policy for AccessWidget">
<link rel="stylesheet" href="styles.css">
<style>
.legal-content {
padding: 100px 24px;
max-width: 800px;
margin: 0 auto;
}
.legal-content h1 {
font-size: 2.5rem;
margin-bottom: 24px;
text-align: center;
}
.legal-content h2 {
margin-top: 40px;
margin-bottom: 16px;
}
.legal-content p {
margin-bottom: 16px;
color: var(--text-secondary);
}
</style>
</head>
<body class="dark-theme">
<nav class="navbar container">
<div class="logo">
<a href="/" style="color: inherit; text-decoration: none; display: flex; align-items: center;">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-right:8px;"><circle cx="12" cy="12" r="10"/><path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"/><path d="M2 12h20"/></svg>
AccessWidget
</a>
</div>
</nav>
<main class="legal-content">
<h1>Privacy Policy</h1>
<p><em>Last updated: August 2026</em></p>
<h2>1. The Embeddable Widget (What runs on your site)</h2>
<p>The core AccessWidget JavaScript library (`accessibility.js`) that you embed on your website is designed with a strict <strong>Privacy-First</strong> architecture.</p>
<ul>
<li><strong>Zero Tracking:</strong> The widget does not include any analytics, tracking pixels, or phone-home requests.</li>
<li><strong>Local Data Only:</strong> User accessibility preferences (like text size or contrast) are stored purely in the user's browser via <code>localStorage</code>. This data never leaves their device.</li>
<li><strong>No External API Calls:</strong> The widget does not communicate with our servers or any third-party services after it is downloaded.</li>
</ul>
<h2>2. This Website (accessibility.dippan.com.np)</h2>
<p>While the widget itself tracks nothing, our marketing and documentation website (this site) collects some basic information to help us understand our visitors.</p>
<ul>
<li><strong>Google Analytics:</strong> We use Google Analytics to measure traffic. This is only loaded if you explicitly click "Accept" on our cookie banner.</li>
<li><strong>Cookies:</strong> If you accept our analytics, Google places a cookie in your browser. We also store a local <code>aw_cookie_consent</code> value to remember your choice.</li>
</ul>
<h2>3. Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us at connect@dippan.com.np.</p>
</main>
<footer class="site-footer">
<div class="container footer-content">
<p>© 2026 Dippan. Released under the MIT License.</p>
<div class="footer-links">
<a href="/docs">Documentation</a>
<a href="/privacy">Privacy Policy</a>
<a href="/terms">Terms of Service</a>
<a href="https://github.com/kdippan/AccessWidget" target="_blank" rel="noopener">GitHub</a>
<a href="https://dippan.com.np" target="_blank" rel="noopener">Author</a>
</div>
</div>
</footer>
</body>
</html>