-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
454 lines (451 loc) · 25.6 KB
/
index.html
File metadata and controls
454 lines (451 loc) · 25.6 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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicons -->
<link rel="icon" type="image/png" sizes="16x16" href="logo/icon-16.png">
<link rel="icon" type="image/png" sizes="48x48" href="logo/con-48.png">
<link rel="icon" type="image/png" sizes="128x128" href="logo/icon-128.png">
<!-- iOS & high-DPI “Add to Home Screen” -->
<link rel="apple-touch-icon" sizes="128x128" href="logo/icon-128.png">
<!-- Optional legacy fallback (very old browsers) -->
<link rel="shortcut icon" href="logo/icon-16.png">
<title>The Memory Mate – Save Your Best AI Answers Instantly</title>
<meta name="description" content="Save your favorite AI chatbot answers in one click. Memory Mate organizes, tags and finds them instantly, giving you a 10× productivity boost and building your second brain.">
<meta name="keywords" content="AI answers, chatbot notes, productivity extension, second brain">
<meta property="og:title" content="The Memory Mate – Save Your Best AI Answers Instantly">
<meta property="og:description" content="Save and organize AI replies with one click. Build your second brain and recall insights in seconds.">
<meta property="og:image" content="logo/logo.png">
<meta property="og:type" content="website">
<meta property="og:url" content="https://thememorymate.example.com/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="The Memory Mate – Save Your Best AI Answers Instantly">
<meta name="twitter:description" content="Save and organize AI chatbot answers effortlessly. Reclaim knowledge and boost productivity.">
<meta name="twitter:image" content="logo/logo.png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
* { box-sizing: border-box; }
body {
margin: 0;
font-family: 'Inter', 'Roboto', 'Open Sans', sans-serif;
color: #1a2a1a;
background: linear-gradient(180deg,#f8fff9 0%,#e9faee 100%);
line-height: 1.6;
scroll-behavior: smooth;
}
h1,h2,h3,h4,p { margin: 0; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
header {
padding: 1rem 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
}
.menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 2rem;
}
.menu a {
display: inline-block;
padding: 0.45rem 0.8rem;
border-radius: 0.5rem;
font-weight: 500;
color: #4CAF50;
}
.menu a.btn-primary {
color: #fff !important;
}
.menu a:not(.btn-primary):hover,
.menu a:not(.btn-primary):focus-visible {
background: #e9faee;
}
.btn-primary {
background: #4CAF50;
color: #fff;
font-weight: 600;
border-radius: 0.75rem;
padding: 0.65rem 1.8rem;
font-size: 1rem;
transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
display: inline-block;
cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus-visible {
background: #45a049;
box-shadow: 0 4px 24px rgba(69,160,73,0.14);
transform: translateY(-2px) scale(1.02);
}
.logo-wrap {
display: flex;
align-items: center;
gap: 0.6rem;
}
.logo-wrap img {
border-radius: 50%;
box-shadow: 0 2px 8px rgba(76,175,80,0.06);
}
.logo-text {
color: #4CAF50;
font-weight: 600;
font-size: 2.4rem;
line-height: 1;
display: flex;
align-items: center;
}
.hero {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap-reverse;
gap: 2rem;
padding: 3rem 0 4rem;
}
.hero-text { flex: 1 1 420px; }
.hero-text h1 { font-size: 2.5rem; font-weight: 600; margin-bottom: 1rem; }
.hero-text p { font-size: 1.2rem; margin-bottom: 1.5rem; }
.hero-img { flex: 1 1 380px; text-align: center; position: relative; }
.hero-img img { width: 100%; max-width: 720px; height: auto; border-radius: 1rem; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.section { padding: 4rem 0; }
.how-steps { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.step {
flex: 1 1 280px;
text-align: center;
cursor: pointer;
transition: transform 0.18s;
}
.step:hover { transform: translateY(-3px); }
.step:hover .icon-circle {
background: #4CAF50;
color: #fff;
}
.step:hover .icon-circle svg * {
stroke: currentColor !important;
fill: none !important;
}
.icon-circle {
width: 64px; height: 64px;
border-radius: 999px;
background: #e9faee;
color: #4CAF50;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 1rem;
transition: background 0.18s, color 0.18s;
cursor: pointer;
}
.benefit-icon {
width: 28px; height: 28px;
color: #4CAF50;
display: block;
margin: 0 auto 0.5rem;
}
.list-check { list-style: none; padding: 0; text-align: left; max-width: 720px; margin: 0 auto 1.5rem; line-height: 1.6; }
.list-check li { position: relative; padding-left: 1.6rem; }
.list-check svg { position: absolute; left: 0; top: 0.25rem; width: 1rem; height: 1rem; color: #4CAF50; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.card-feature {
background: #fff;
border: 1px solid #e6f4ea;
border-radius: 1rem;
padding: 1.75rem 1.25rem;
box-shadow: 0 1px 8px rgba(69,160,73,0.06);
transition: box-shadow 0.18s, transform 0.13s;
cursor: pointer;
}
.card-feature:hover { box-shadow: 0 4px 20px rgba(76,175,80,0.13); transform: translateY(-3px); }
.card-feature:hover .icon-circle {
background: #4CAF50;
color: #fff;
}
.card-feature:hover .icon-circle svg * {
stroke: currentColor !important;
fill: none !important;
}
.feature-shots { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.feature-shots img { width: 100%; max-width: 460px; border-radius: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.testimonials { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; }
.testimonial { flex: 1 1 300px; display: flex; gap: 1rem; }
.testimonial img { width: 44px; height: 44px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.testimonial-bubble {
background: #e9faee;
border-radius: 1rem 1rem 1rem 0.3rem;
padding: 1rem 1.2rem;
box-shadow: 0 2px 8px rgba(76,175,80,0.08);
font-size: 0.95rem;
}
.urgency {
background: #fffbe6;
padding: 0.75rem 1rem;
border-radius: 0.75rem;
text-align: center;
margin: 3rem auto 0;
max-width: 480px;
font-size: 1rem;
}
.flashing-dot {
display: inline-block;
width: 8px;
height: 8px;
margin-right: 0.4rem;
border-radius: 50%;
background: #ff2d55;
animation: pulse 1.2s infinite;
}
@keyframes pulse {
0%,100% { opacity: 0.3; }
50% { opacity: 1; }
}
footer { background: linear-gradient(90deg, #e9faee 60%, #f7fdf8 100%); border-top: 1px solid #e6f4ea; padding: 2rem 0; margin-top: 4rem; }
footer .links { display: flex; gap: 1.5rem; font-size: 0.9rem; }
footer .bottom { margin-top: 1rem; color: #555; font-size: 0.85rem; }
/* Responsive tweaks */
@media (max-width: 900px) {
nav { flex-wrap: wrap; }
.menu { flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 0.5rem; }
.hero { flex-direction: column-reverse; }
.hero-text { text-align: center; }
.logo-text { font-size: 2rem; }
}
@media (max-width: 640px) {
.menu { flex-direction: column; align-items: center; }
.hero-text h1 { font-size: 2rem; }
.hero-text p { font-size: 1.05rem; }
.logo-wrap img { width: 72px; height: 72px; }
.logo-text { font-size: 1.7rem; }
.how-steps { flex-direction: column; align-items: center; }
.testimonials { flex-direction: column; }
}
</style>
</head>
<body>
<header class="container">
<nav>
<div class="logo-wrap">
<img src="logo/logo.png" width="84" height="84" alt="Memory Mate logo">
<span class="logo-text">Memory Mate</span>
</div>
<ul id="main-menu" class="menu">
<li><a href="#how">How it Works</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="https://chromewebstore.google.com/detail/the-memory-mate/calfccccgohkapncggmfkmnmjonogkae" class="btn-primary">Add to Chrome</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="hero">
<div class="hero-text">
<h1>Never Lose Another AI Breakthrough—Your Second Brain Awaits</h1>
<p class="lead">Save any answer from ChatGPT, Gemini, Claude or Perplexity in one click. Find it again before your coffee cools. That's a 10× boost today—on the path to a 100× second brain.</p>
<a href="https://chromewebstore.google.com/detail/the-memory-mate/calfccccgohkapncggmfkmnmjonogkae" class="btn-primary">Add to Chrome — Free Forever</a>
<small>Zero forms. Data stored only locally.</small>
</div>
<div class="hero-img">
<img id="hero-screenshot" src="screenshots/screenshot1.png" alt="Memory Mate extension screenshot">
</div>
</section>
<section class="pain-solution" style="text-align:center;padding:2rem 0;">
<h2>Stop Endless Chat-Scrolling</h2>
<p>Clip answers once—retrieve them in seconds whenever inspiration strikes.</p>
</section>
<section id="how" class="section">
<h2 style="font-size:1.8rem;font-weight:600;text-align:center;">How It Works</h2>
<div class="how-steps" style="margin-top:2rem;">
<div class="step">
<div class="icon-circle">
<svg width="34" height="34" viewBox="0 0 34 34" aria-hidden="true">
<ellipse cx="17" cy="17" rx="14" ry="13" fill="#fff" stroke="#4CAF50" stroke-width="2" />
<circle cx="17" cy="14" r="3" fill="#4CAF50" opacity="0.8" />
<rect x="22" y="7" width="6" height="8" rx="2" fill="#4CAF50" stroke="#45a049" stroke-width="1" />
<path d="M24 9V13L25.8 11.7L28 13V9" stroke="#fff" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<h3>Capture</h3>
<p>Press the green icon on any answer.</p>
</div>
<div class="step">
<div class="icon-circle">
<svg width="34" height="34" viewBox="0 0 34 34" aria-hidden="true">
<rect x="6" y="13" width="22" height="14" rx="4" fill="#fff" stroke="#4CAF50" stroke-width="2" />
<rect x="10" y="8" width="8" height="8" rx="2" fill="#4CAF50" stroke="#45a049" stroke-width="1" />
<path d="M16 8l2.5 4" stroke="#45a049" stroke-width="1.2" />
</svg>
</div>
<h3>Organise</h3>
<p>Smart tags file it by project & topic.</p>
</div>
<div class="step">
<div class="icon-circle">
<svg width="34" height="34" viewBox="0 0 34 34" aria-hidden="true">
<circle cx="17" cy="17" r="15" fill="#fff" stroke="#4CAF50" stroke-width="2" />
<path d="M17 22l3.5-6h-2.5l2-6-6 8h3l-2 4z" fill="#4CAF50" />
<circle cx="24" cy="24" r="5" fill="#e9faee" stroke="#45a049" stroke-width="1.2" />
<path d="M27 27l3 3" stroke="#4CAF50" stroke-width="2" stroke-linecap="round" />
</svg>
</div>
<h3>Recall</h3>
<p>Instant search resurfaces it in seconds.</p>
</div>
</div>
</section>
<section id="features" class="section">
<h2 style="font-size:1.8rem;font-weight:600;text-align:center;">Why You’ll Love Memory Mate</h2>
<div class="grid feature-grid gap-5" style="margin-top:2rem;">
<div class="card-feature fade-in fade-in-4">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="5" width="18" height="14" rx="3" fill="#4CAF50" opacity="0.13"/><path d="M5 5v14h14V5H5zm7 1v6m0 0l3-3m-3 3l-3-3" stroke="#4CAF50" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">One‑Click Capture</h4>
<p class="text-gray-600 text-base">Save crucial answers without breaking your flow.</p>
</div>
<div class="card-feature fade-in fade-in-5">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="7" width="18" height="12" rx="2" fill="#4CAF50" opacity="0.13"></rect><path d="M6 7V5a2 2 0 012-2h8a2 2 0 012 2v2" stroke="#4CAF50" stroke-width="1.7"></path><rect x="8" y="11" width="8" height="5" rx="1" fill="#4CAF50" opacity="0.17"></rect></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Smart Tags</h4>
<p class="text-gray-600 text-base">Skip manual sorting—topics and projects auto‑tag themselves.</p>
</div>
<div class="card-feature fade-in fade-in-4">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><circle cx="11" cy="11" r="7" fill="#4CAF50" opacity="0.13"></circle><circle cx="11" cy="11" r="7" stroke="#4CAF50" stroke-width="1.7" fill="none"></circle><path d="M21 21l-4.3-4.3" stroke="#4CAF50" stroke-width="1.7" stroke-linecap="round"></path></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Quick Recall</h4>
<p class="text-gray-600 text-base">Find any snippet in seconds with lightning search.</p>
</div>
<div class="card-feature fade-in fade-in-5">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="7" width="18" height="12" rx="4" fill="#4CAF50" opacity="0.13"></rect><path d="M12 15v2m0-2a2 2 0 100-4 2 2 0 000 4zm0-4v-2m0 10a8 8 0 100-16 8 8 0 000 16z" stroke="#4CAF50" stroke-width="1.7"></path></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Private Vault</h4>
<p class="text-gray-600 text-base">Everything stays on your machine—your knowledge, your rules.</p>
</div>
<div class="card-feature fade-in fade-in-4">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><circle cx="12" cy="12" r="10" fill="#4CAF50" opacity="0.13"></circle><path d="M2 16a10 10 0 0014-14" stroke="#4CAF50" stroke-width="1.7"></path><path d="M15 10.25a5.5 5.5 0 11-3.5-8.5" stroke="#4CAF50" stroke-width="1.7"></path><rect x="14" y="14" width="7" height="7" rx="2" fill="#4CAF50" opacity="0.17"></rect></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Works Everywhere</h4>
<p class="text-gray-600 text-base">Clip ChatGPT, Gemini, Claude, Perplexity—and more.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><path d="M10 13a4 4 0 010-6l2-2a4 4 0 016 6l-1 1" stroke="#4CAF50" stroke-width="1.7" fill="none"/><path d="M14 11a4 4 0 010 6l-2 2a4 4 0 01-6-6l1-1" stroke="#4CAF50" stroke-width="1.7" fill="none"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Reliable Sourcing</h4>
<p class="text-gray-600 text-base">Built‑in URL and timestamp keep citations honest.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="7" width="18" height="12" rx="2" fill="#4CAF50" opacity="0.13"/><path d="M7 10l4 4 6-6" stroke="#4CAF50" stroke-width="1.7" fill="none" stroke-linecap="round"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Clean Boundaries</h4>
<p class="text-gray-600 text-base">Every clip lands in the right project—never a dump pile.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><path d="M8 17v4h8v-4m-4-10v10" stroke="#4CAF50" stroke-width="1.7" fill="none" stroke-linecap="round"/><path d="M8 7l4-4 4 4" stroke="#4CAF50" stroke-width="1.7" fill="none" stroke-linecap="round"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Easy In/Out</h4>
<p class="text-gray-600 text-base">Import old notes and export polished reports fast.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><rect x="4" y="4" width="16" height="16" rx="2" fill="#4CAF50" opacity="0.13"/><path d="M7 8l1.5 8L12 9l3.5 7 1.5-8" stroke="#4CAF50" stroke-width="1.7" stroke-linejoin="round" fill="none"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Pro‑Tier Convenience</h4>
<p class="text-gray-600 text-base">Word support keeps Office-centric teams in the loop.</p>
</div>
</div>
<p style="font-size:0.95rem;color:#555;max-width:720px;margin:0 auto;">Micro-proof: users report cutting research time by 30–50% after the first week.</p>
<section id="roadmap" class="roadmap" style="margin-top:3rem;text-align:center;">
<div class="urgency" style="margin-top:0; margin-bottom:1.5rem;">
<p><span class="flashing-dot"></span> 1 new install every 3 minutes — join before Pro pricing launches.</p>
</div>
<h2 style="font-size:1.8rem;font-weight:600;margin-bottom:1.5rem;">Roadmap to 100× Productivity</h2>
<h3 style="font-weight:600;margin-bottom:1rem;">Live Now</h3>
<div class="grid feature-grid gap-5">
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><rect x="4" y="4" width="6" height="6" fill="#4CAF50"/><rect x="14" y="4" width="6" height="6" fill="#4CAF50"/><rect x="4" y="14" width="6" height="6" fill="#4CAF50"/><rect x="14" y="14" width="6" height="6" fill="#4CAF50"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Capture answers from 4 web‑LLMs</h4>
<p class="text-gray-600 text-base">Clip any reply from ChatGPT, Gemini, Claude, or Perplexity—only the gold, no full-page noise.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><path d="M3 11v7a2 2 0 002 2h14a2 2 0 002-2V11" stroke="#4CAF50" stroke-width="1.7" fill="none"/><path d="M3 11l3-3h5l3 3h8" stroke="#4CAF50" stroke-width="1.7" fill="none" stroke-linejoin="round"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Organise in “Projects”</h4>
<p class="text-gray-600 text-base">Pick a folder; every clip drops in sorted so research stays tidy.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><circle cx="12" cy="12" r="9" stroke="#4CAF50" stroke-width="1.7" fill="none"/><path d="M12 7v5l3 1.5" stroke="#4CAF50" stroke-width="1.7" stroke-linecap="round"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Auto-source + timestamp</h4>
<p class="text-gray-600 text-base">We save the URL and exact time so future-you knows where facts came from.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><path d="M12 5v14" stroke="#4CAF50" stroke-width="1.7" stroke-linecap="round"/><path d="M5 12l7-7 7 7" stroke="#4CAF50" stroke-width="1.7" stroke-linecap="round" fill="none"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Import external files</h4>
<p class="text-gray-600 text-base">Add TXT & HTML now; DOCX for Pro—consolidate scattered notes.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><path d="M12 19V5" stroke="#4CAF50" stroke-width="1.7" stroke-linecap="round"/><path d="M5 12l7 7 7-7" stroke="#4CAF50" stroke-width="1.7" stroke-linecap="round" fill="none"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Export any project</h4>
<p class="text-gray-600 text-base">Push to TXT/HTML now; DOCX for Pro—share or back up as needed.</p>
</div>
</div>
<h3 style="font-weight:600;margin-bottom:1rem;">Near-Term Roadmap (Next 90–120 Days)</h3>
<div class="grid feature-grid gap-5">
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><path d="M12 5v14m7-7H5" stroke="#4CAF50" stroke-width="1.7" stroke-linecap="round"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Sync to Notion, Obsidian, OneNote or Markdown</h4>
<p class="text-gray-600 text-base">One click keeps every project in sync with your PKM.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><path d="M6 12l4-4 4 4-4 4-4-4z" stroke="#4CAF50" stroke-width="1.7" fill="none"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Answer & Project Tags</h4>
<p class="text-gray-600 text-base">Tags make every clip instantly searchable.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><path d="M5 12h14M12 5l7 7-7 7" stroke="#4CAF50" stroke-width="1.7" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">Inject into Prompt</h4>
<p class="text-gray-600 text-base">Drop saved clips into a chat with zero copy‑paste.</p>
</div>
<div class="card-feature">
<div class="icon-circle"><svg width="28" height="28" viewBox="0 0 24 24" aria-hidden="true"><path d="M12 3l2.09 6.26L21 9.27l-4.91 3.58L17.18 21 12 17.77 6.82 21l1.09-8.15L3 9.27l6.91-1.01L12 3z" stroke="#4CAF50" stroke-width="1.3" fill="none"/></svg></div>
<h4 class="font-semibold text-lg text-[#1a2a1a] mb-1">RAG-Powered Assistant</h4>
<p class="text-gray-600 text-base">Our AI surfaces the perfect snippet and rewrites your prompt for you.</p>
</div>
</div>
<p style="margin-top:1.5rem;"><a href="https://chromewebstore.google.com/detail/the-memory-mate/calfccccgohkapncggmfkmnmjonogkae" class="btn-primary">Add to Chrome — Free Forever</a></p>
<small class="microcopy">Zero forms. Data stored only locally.</small>
</section>
</section>
<section id="testimonials" class="section" style="padding-top:0;">
<h2 style="font-size:1.8rem;font-weight:600;text-align:center;">Join 2 300+ creators who reclaimed their genius.</h2>
<div class="testimonials" style="margin-top:2rem;display:flex;flex-direction:column;gap:1.5rem;">
<blockquote style="background:#e9faee;padding:1rem 1.2rem;border-radius:1rem;">
“Memory Mate cut my research time in half—my boss thinks I’m psychic.”
<cite style="display:block;margin-top:0.5rem;color:#45a049;font-style:normal;font-weight:500;">Laura T., Product Manager</cite>
</blockquote>
<blockquote style="background:#e9faee;padding:1rem 1.2rem;border-radius:1rem;">
“Installed during lunch, saved three proposals by dinner.”
<cite style="display:block;margin-top:0.5rem;color:#45a049;font-style:normal;font-weight:500;">Hiro S., Freelance Copywriter</cite>
</blockquote>
</div>
</section>
<section class="section" id="download" style="text-align:center;padding-top:0;">
<h2 style="font-size:2rem;font-weight:600;margin-bottom:1rem;">Ready for a 10× productivity boost?<span style="display:block;font-size:1rem;margin-top:0.4rem;">Ride the 100× wave as new features land.</span></h2>
<a href="https://chromewebstore.google.com/detail/the-memory-mate/calfccccgohkapncggmfkmnmjonogkae" class="btn-primary" style="font-size:1.1rem;">Add to Chrome — Free Forever</a>
<small class="microcopy">Zero forms. Remove anytime in two clicks.</small>
</section>
</main>
<footer>
<div class="container" style="display:flex;flex-direction:column;align-items:center;text-align:center;">
<div class="links">
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms</a>
<a href="contact.html">Contact</a>
</div>
<div class="bottom">© 2025 The Memory Mate. Made by humans who hate re-typing answers.</div>
</div>
</footer>
<script>
const heroShots = [
'screenshots/screenshot1.png',
'screenshots/screenshot2.png',
'screenshots/screenshot3.png'
];
const heroImg = document.getElementById('hero-screenshot');
let shotIndex = 0;
setInterval(() => {
shotIndex = (shotIndex + 1) % heroShots.length;
if (heroImg) heroImg.src = heroShots[shotIndex];
}, 4000);
</script>
</body>
</html>