-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (115 loc) · 3.68 KB
/
index.html
File metadata and controls
133 lines (115 loc) · 3.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | SmallOLED</title>
<style>
:root {
--primary-color: #24292e;
--accent-color: #0366d6;
--bg-color: #f6f8fa;
--text-color: #24292e;
--kofi-color: #29abe0;
--maker-color: #ff5a5f;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
line-height: 1.6;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.container {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
max-width: 600px;
width: 100%;
border: 1px solid #e1e4e8;
}
h1 {
font-size: 24px;
margin-top: 0;
color: var(--primary-color);
border-bottom: 2px solid var(--bg-color);
padding-bottom: 10px;
}
p {
font-size: 16px;
color: #444;
}
.section-title {
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
color: #888;
margin-top: 30px;
margin-bottom: 15px;
font-weight: bold;
}
.links-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-bottom: 20px;
}
.btn {
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
border-radius: 6px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: opacity 0.2s;
color: white;
}
.btn:hover {
opacity: 0.8;
}
.btn-kofi { background-color: var(--kofi-color); }
.btn-maker { background-color: var(--maker-color); }
.back-link {
display: block;
text-align: center;
margin-top: 20px;
color: var(--accent-color);
text-decoration: none;
font-size: 14px;
}
.footer {
margin-top: 40px;
font-size: 12px;
color: #959da5;
text-align: center;
border-top: 1px solid #eee;
padding-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p><strong>SmallOLED</strong> does not collect, store, or transmit any personal data. All communication happens exclusively on your local network between your phone and your device. No data leaves your network.</p>
<p>The app operates entirely locally; we do not use cookies, tracking tools, or third-party analytics.</p>
<div class="section-title">Support & More</div>
<div class="links-grid">
<a href="https://ko-fi.com/keralots" target="_blank" class="btn btn-kofi">Support on Ko-fi</a>
<a href="https://makerworld.com/en/@keralots" target="_blank" class="btn btn-maker">MakerWorld</a>
</div>
<a href="https://github.com/Keralots/SmallOLED-PCMonitor" class="back-link">← Project Repository</a>
<div class="footer">
SmallOLED PC Monitor Project<br>
Last updated: February 21, 2026
</div>
</div>
</body>
</html>