-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
231 lines (222 loc) · 11.8 KB
/
Copy pathindex.html
File metadata and controls
231 lines (222 loc) · 11.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>snapsift — keep the best shot, lose the burst</title>
<meta name="description" content="On-device macOS app that finds the near-duplicate burst shots Apple's Duplicates detector misses — quality-aware keeper, face-aware re-pick, cross-time look-alikes — and deletes the extras into Recently Deleted. Runs entirely on your Mac.">
<meta property="og:title" content="snapsift — keep the best shot, lose the burst">
<meta property="og:description" content="On-device · PhotoKit + Vision · Apple-quality keeper · favorites safe · recoverable delete · MIT">
<meta property="og:type" content="website">
<meta property="og:url" content="https://oss.cver.net/snapsift/">
<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=Comfortaa:wght@500;600;700&family=Nunito:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--teal: #0a8c8e;
--dark-teal: #084a4c;
--deep: #052f30;
--mint: #aceace;
--text: #e6f4f3;
--text-dim: rgba(230, 244, 243, 0.66);
--text-faint: rgba(230, 244, 243, 0.42);
--surface: rgba(255, 255, 255, 0.06);
--surface-2: rgba(255, 255, 255, 0.09);
--border: rgba(172, 234, 206, 0.18);
--green: #10b981;
--amber: #f59e0b;
--red: #ef4444;
--code-bg: rgba(3, 28, 28, 0.7);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'Nunito', system-ui, sans-serif;
color: var(--text);
background:
radial-gradient(1100px 700px at 78% -8%, rgba(172, 234, 206, 0.16), transparent 60%),
radial-gradient(900px 800px at 12% 8%, rgba(10, 140, 142, 0.30), transparent 62%),
linear-gradient(160deg, var(--dark-teal) 0%, var(--deep) 100%);
background-attachment: fixed;
min-height: 100vh;
line-height: 1.65;
-webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
nav {
display: flex; align-items: center; justify-content: space-between;
padding: 22px 24px; max-width: 960px; margin: 0 auto;
}
.brand { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 1.4rem; color: #fff; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-link {
text-decoration: none; color: var(--text-dim); font-weight: 600; font-size: 0.92rem;
padding: 8px 14px; border-radius: 999px; transition: all 0.2s ease;
}
.nav-link:hover { color: #fff; background: var(--surface); }
header.hero { text-align: center; padding: 56px 0 36px; }
.wordmark {
font-family: 'Comfortaa', cursive; font-weight: 700;
font-size: clamp(3rem, 9vw, 5.2rem); line-height: 1; letter-spacing: -0.02em;
color: #fff; margin-bottom: 18px; text-shadow: 0 8px 40px rgba(172, 234, 206, 0.25);
}
.tagline { font-size: clamp(1.15rem, 3.2vw, 1.6rem); font-weight: 700; color: var(--mint); margin-bottom: 14px; }
.sub { font-size: 1.05rem; color: var(--text-dim); max-width: 640px; margin: 0 auto 10px; }
.intended-use { font-size: 0.86rem; color: var(--text-faint); max-width: 600px; margin: 6px auto 0; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.btn {
text-decoration: none; font-weight: 700; font-size: 0.98rem; padding: 13px 26px;
border-radius: 999px; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary { background: var(--mint); color: #04181a; box-shadow: 0 8px 30px rgba(172, 234, 206, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(172, 234, 206, 0.35); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); background: var(--surface); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--mint); }
/* mock review window */
.mock-stage { display: flex; justify-content: center; padding: 10px 24px 8px; }
.mock {
width: 100%; max-width: 620px; background: rgba(5, 24, 26, 0.86);
border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
box-shadow: 0 30px 80px rgba(0,0,0,0.45); backdrop-filter: blur(8px);
}
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.mock-dots span { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.r { background: #ff5f57; } .y { background: #febc2e; } .g { background: #28c840; }
.mock-title { font-family: 'Comfortaa', cursive; font-weight: 600; color: var(--mint); margin-left: 6px; }
.mock-meta { margin-left: auto; font-size: 0.78rem; color: var(--text-faint); }
.mock-body { padding: 16px; }
.mock-head { font-size: 0.84rem; color: var(--text-dim); margin-bottom: 12px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.frame { aspect-ratio: 1; border-radius: 10px; border: 2px solid transparent; position: relative; overflow: hidden; }
.frame .pic { position: absolute; inset: 0; }
.frame .lbl {
position: absolute; top: 6px; left: 6px; font-size: 0.62rem; font-weight: 800;
padding: 2px 6px; border-radius: 5px; letter-spacing: 0.04em;
}
.keep { border-color: var(--green); } .keep .lbl { background: var(--green); color: #04110a; }
.del { border-color: var(--red); } .del .pic { opacity: 0.34; } .del .lbl { background: var(--red); color: #fff; }
.fav { border-color: var(--amber); } .fav .lbl { background: var(--amber); color: #1a1203; top: 6px; right: 6px; left: auto; }
.p1 { background: linear-gradient(135deg, #2b6f70, #0a8c8e); }
.p2 { background: linear-gradient(135deg, #316b58, #10b981); }
.p3 { background: linear-gradient(135deg, #6b5a31, #b8923a); }
section { padding: 40px 0; }
.section-title { font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 1.7rem; color: #fff; text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--text-dim); margin-bottom: 30px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.card .ic { font-size: 1.6rem; margin-bottom: 10px; }
.card h3 { font-size: 1.05rem; color: var(--mint); margin-bottom: 6px; }
.card p { font-size: 0.92rem; color: var(--text-dim); }
.steps { display: grid; gap: 14px; max-width: 680px; margin: 0 auto; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; }
.step h3 { font-size: 1rem; color: var(--mint); margin-bottom: 8px; }
pre { background: var(--code-bg); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; overflow-x: auto; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.86rem; color: var(--text); }
footer { text-align: center; padding: 40px 24px 60px; color: var(--text-faint); font-size: 0.88rem; }
footer a { color: var(--mint); text-decoration: none; }
</style>
</head>
<body>
<nav>
<span class="brand">snapsift</span>
<div class="nav-right">
<a class="nav-link" href="#get">Get it</a>
<a class="nav-link" href="https://github.com/CVERInc/snapsift" target="_blank" rel="noopener">GitHub</a>
</div>
</nav>
<header class="hero">
<div class="wrap">
<h1 class="wordmark">snapsift</h1>
<p class="tagline">Keep the best shot. Lose the burst.</p>
<p class="sub">Apple's Duplicates detector leaves manual bursts alone — hold the shutter, get 15 near-identical frames, and it thinks you meant to. snapsift finds them and keeps just the best one.</p>
<p class="intended-use">Runs entirely on your Mac · favorites always kept · deletions recoverable for 30 days</p>
<div class="cta-row">
<a class="btn btn-primary" href="#get">Get the app</a>
<a class="btn btn-ghost" href="https://github.com/CVERInc/snapsift" target="_blank" rel="noopener">Source</a>
</div>
</div>
</header>
<div class="mock-stage">
<div class="mock" aria-hidden="true">
<div class="mock-bar">
<div class="mock-dots"><span class="r"></span><span class="y"></span><span class="g"></span></div>
<span class="mock-title">snapsift</span>
<span class="mock-meta">5 frames · spans 1.8s · keep 1, delete 4</span>
</div>
<div class="mock-body">
<div class="mock-head">Click any frame to keep it · ★ favorites always kept</div>
<div class="grid">
<div class="frame keep"><div class="pic p1"></div><span class="lbl">KEEP</span></div>
<div class="frame del"><div class="pic p2"></div><span class="lbl">DELETE</span></div>
<div class="frame del"><div class="pic p1"></div><span class="lbl">DELETE</span></div>
<div class="frame fav"><div class="pic p3"></div><span class="lbl">★</span></div>
</div>
</div>
</div>
</div>
<section>
<div class="wrap">
<h2 class="section-title">Why snapsift</h2>
<p class="section-sub">Built on Apple's own frameworks. All on-device.</p>
<div class="features">
<div class="card">
<div class="ic">🔒</div>
<h3>Fully on-device</h3>
<p>PhotoKit reads, Vision analyses, native delete — nothing ever leaves your Mac.</p>
</div>
<div class="card">
<div class="ic">✨</div>
<h3>Keeps the genuinely best frame</h3>
<p>Reads Apple's own quality scores to keep the sharpest, best-composed frame — not just the biggest file.</p>
</div>
<div class="card">
<div class="ic">😊</div>
<h3>Face-aware</h3>
<p>Vision finds faces and open eyes, picking the frame where everyone looks their best.</p>
</div>
<div class="card">
<div class="ic">🕓</div>
<h3>Cross-time look-alikes</h3>
<p>Apple's neural feature prints find the same photo saved on different days, not just time bursts.</p>
</div>
<div class="card">
<div class="ic">⭐</div>
<h3>Favorites are sacred</h3>
<p>Favorites are never deleted; videos are skipped by default. Safe by default.</p>
</div>
<div class="card">
<div class="ic">↩️</div>
<h3>Always recoverable</h3>
<p>Deletions go to Recently Deleted — recoverable for 30 days, synced across your devices.</p>
</div>
</div>
</div>
</section>
<section id="get">
<div class="wrap">
<h2 class="section-title">Get started</h2>
<p class="section-sub">No Xcode — one command builds a double-clickable app.</p>
<div class="steps">
<div class="step">
<h3>1 · Clone</h3>
<pre><code>git clone https://github.com/CVERInc/snapsift
cd snapsift/app</code></pre>
</div>
<div class="step">
<h3>2 · Build the app</h3>
<pre><code>./scripts/build-app.sh # → ~/Desktop/snapsift.app</code></pre>
</div>
<div class="step">
<h3>3 · Scan, review, delete</h3>
<p>Double-click snapsift.app (first time: right-click → Open). It asks for Photos access on first scan. Scan → review each cluster → delete the extras.</p>
</div>
</div>
</div>
</section>
<footer>
<p>By <a href="https://cver.net">cver.net</a> · MIT · <a href="https://github.com/CVERInc/snapsift">GitHub</a></p>
</footer>
</body>
</html>