-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
421 lines (374 loc) · 19.9 KB
/
index.html
File metadata and controls
421 lines (374 loc) · 19.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meri PDF | One Stop Solution for PDF</title>
<!-- Dependencies -->
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/lucide@latest"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
:root {
--brand-primary: #6366f1;
--brand-secondary: #a855f7;
--bg-light: #f8fafc; /* Off-white theme color */
}
body {
font-family: 'Plus Jakarta Sans', sans-serif;
background-color: var(--bg-light); /* Changed from pure white */
color: #0f172a;
overflow-x: hidden;
scroll-behavior: smooth;
}
.premium-glass {
background: rgba(248, 250, 252, 0.9); /* Matched to off-white bg */
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.tool-grid-card {
background: #ffffff;
border: 1px solid #cbd5e1; /* Slightly darker border for better definition */
border-radius: 1.25rem;
padding: 1.5rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
display: flex;
flex-direction: column;
gap: 1rem;
height: 100%;
}
.tool-grid-card:hover {
border-color: var(--brand-primary);
box-shadow: 0 12px 24px -8px rgba(99, 102, 241, 0.15);
transform: translateY(-4px);
}
.tool-icon-box {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
}
.tool-grid-card:hover .tool-icon-box {
transform: scale(1.1);
}
.tagline-premium {
font-size: 0.65rem;
letter-spacing: 0.15em;
text-transform: uppercase;
font-weight: 800;
color: #4f46e5; /* Slightly darker indigo */
margin-top: -2px;
}
.status-pill {
font-size: 10px;
padding: 2px 8px;
border-radius: 99px;
font-weight: 700;
text-transform: uppercase;
}
.pill-soon { background: #e2e8f0; color: #475569; }
.pill-live { background: #d1fae5; color: #047857; }
.search-container {
position: relative;
max-width: 600px;
margin: 0 auto 3rem auto;
}
.search-input {
width: 100%;
padding: 1rem 1.5rem 1rem 3.5rem;
border-radius: 1rem;
border: 1px solid #cbd5e1;
background: #ffffff;
color: #0f172a;
font-weight: 500;
font-size: 0.95rem;
transition: all 0.2s;
}
.search-input::placeholder {
color: #64748b;
}
.search-input:focus {
outline: none;
border-color: var(--brand-primary);
background: white;
box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(15px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.5s ease forwards; }
section { scroll-margin-top: 100px; }
.category-tag {
font-size: 0.7rem;
font-weight: 800;
color: #64748b;
letter-spacing: 0.05em;
}
</style>
</head>
<body class="min-h-screen flex flex-col">
<!-- Premium Navigation -->
<nav class="premium-glass fixed w-full z-50 top-0 px-6 py-4">
<div class="max-w-7xl mx-auto flex items-center justify-between">
<div class="flex flex-col group cursor-pointer" onclick="window.scrollTo({top: 0, behavior: 'smooth'})">
<div class="flex items-center space-x-2">
<div class="w-8 h-8 bg-indigo-600 rounded-lg flex items-center justify-center text-white">
<i data-lucide="layers" class="w-5 h-5"></i>
</div>
<span class="text-xl font-extrabold tracking-tight text-slate-800">Meri<span class="text-indigo-600">PDF</span></span>
</div>
<span class="tagline-premium ml-10">One stop solution for pdf</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#tool-directory" class="text-xs font-bold text-slate-700 hover:text-indigo-600 uppercase tracking-widest transition-colors">Tool Directory</a>
<a href="#about" class="text-xs font-bold text-slate-700 hover:text-indigo-600 uppercase tracking-widest transition-colors">About</a>
<a href="#security" class="text-xs font-bold text-slate-700 hover:text-indigo-600 uppercase tracking-widest transition-colors">Security</a>
</div>
</div>
</nav>
<!-- Header & Search -->
<header class="pt-32 pb-12 px-6 bg-transparent">
<div class="max-w-4xl mx-auto text-center">
<h1 class="text-3xl font-extrabold text-slate-900 mb-4">PDF Toolbox</h1>
<p class="text-slate-700 text-[15px] mb-8 font-medium">Search and access our 100% client-side PDF utilities.</p>
<div class="search-container">
<i data-lucide="search" class="absolute left-5 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500"></i>
<input type="text" id="toolSearch" class="search-input" placeholder="Search for tools (e.g. merge, doc to pdf, split)..." onkeyup="filterTools()">
</div>
</div>
</header>
<!-- Tool Grid Section -->
<main id="tool-directory" class="pb-20 px-6 flex-grow">
<div class="max-w-6xl mx-auto">
<!-- Category: Popular -->
<div class="mb-4 flex items-center space-x-2">
<span class="category-tag uppercase">Core Utilities</span>
<div class="h-px bg-slate-200 flex-grow"></div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 animate-up mb-12" id="toolGrid">
<!-- Merge PDF -->
<div class="tool-item" data-title="merge pdf combine join">
<div class="tool-grid-card" onclick="window.location.href='https://vishalkumar-netizen.github.io/PdfMerger/'">
<div class="flex justify-between items-start">
<div class="tool-icon-box bg-orange-50 text-orange-600">
<i data-lucide="combine" class="w-6 h-6"></i>
</div>
<span class="status-pill pill-live">Live</span>
</div>
<div>
<h3 class="font-bold text-slate-900 text-lg">Merge PDF</h3>
<p class="text-sm text-slate-700 leading-relaxed mt-1">Combine multiple PDFs into a single document instantly.</p>
</div>
</div>
</div>
<!-- Logo Remover -->
<div class="tool-item" data-title="logo remover watermark clean stamp">
<div class="tool-grid-card" onclick="window.location.href='https://vishalkumar-netizen.github.io/ClearMark-PDF/'">
<div class="flex justify-between items-start">
<div class="tool-icon-box bg-purple-50 text-purple-700">
<i data-lucide="sparkles" class="w-6 h-6"></i>
</div>
<span class="status-pill pill-live">Live</span>
</div>
<div>
<h3 class="font-bold text-slate-900 text-lg">Logo Remover</h3>
<p class="text-sm text-slate-700 leading-relaxed mt-1">Clean documents by removing watermarks and logos.</p>
</div>
</div>
</div>
<!-- NEW: Doc to PDF -->
<div class="tool-item" data-title="doc2pdf doc to pdf convert word docx">
<div class="tool-grid-card" onclick="window.location.href='https://vishalkumar-netizen.github.io/Doc2Pdf/'">
<div class="flex justify-between items-start">
<div class="tool-icon-box bg-blue-50 text-blue-700">
<i data-lucide="file-text" class="w-6 h-6"></i>
</div>
<span class="status-pill pill-live">Live</span>
</div>
<div>
<h3 class="font-bold text-slate-900 text-lg">Doc to PDF</h3>
<p class="text-sm text-slate-700 leading-relaxed mt-1">Convert your Word documents (.docx) to PDF format seamlessly.</p>
</div>
</div>
</div>
<!-- Compress PDF -->
<div class="tool-item" data-title="compress pdf size reduce shrink">
<div class="tool-grid-card" onclick="window.location.href='https://vishalkumar-netizen.github.io/PDF-Size-Compressor/'">
<div class="flex justify-between items-start">
<div class="tool-icon-box bg-indigo-50 text-indigo-600">
<i data-lucide="file-down" class="w-6 h-6"></i>
</div>
<span class="status-pill pill-live">Live</span>
</div>
<div>
<h3 class="font-bold text-slate-900 text-lg">Compress PDF</h3>
<p class="text-sm text-slate-700 leading-relaxed mt-1">Reduce PDF file size without losing quality for easier sharing.</p>
</div>
</div>
</div>
<!-- Compare PDF -->
<div class="tool-item" data-title="compare pdf visual difference high fidelity">
<div class="tool-grid-card" onclick="window.location.href='https://vishalkumar-netizen.github.io/Compare-PDF/'">
<div class="flex justify-between items-start">
<div class="tool-icon-box bg-cyan-50 text-cyan-600">
<i data-lucide="file-diff" class="w-6 h-6"></i>
</div>
<span class="status-pill pill-live">Live</span>
</div>
<div>
<h3 class="font-bold text-slate-900 text-lg">Compare PDF</h3>
<p class="text-sm text-slate-700 leading-relaxed mt-1">High-Fidelity PDF Visual Compare tool to instantly spot differences.</p>
</div>
</div>
</div>
<!-- Split PDF -->
<div class="tool-item" data-title="split pdf separate pages">
<div class="tool-grid-card opacity-75">
<div class="flex justify-between items-start">
<div class="tool-icon-box bg-red-50 text-red-600">
<i data-lucide="scissors" class="w-6 h-6"></i>
</div>
<span class="status-pill pill-soon">Soon</span>
</div>
<div>
<h3 class="font-bold text-slate-900 text-lg">Split PDF</h3>
<p class="text-sm text-slate-700 leading-relaxed mt-1">Extract specific pages or ranges from your documents.</p>
</div>
</div>
</div>
<!-- PDF to JPG -->
<div class="tool-item" data-title="pdf to jpg convert images export">
<div class="tool-grid-card opacity-75">
<div class="flex justify-between items-start">
<div class="tool-icon-box bg-emerald-50 text-emerald-600">
<i data-lucide="image" class="w-6 h-6"></i>
</div>
<span class="status-pill pill-soon">Soon</span>
</div>
<div>
<h3 class="font-bold text-slate-900 text-lg">PDF to JPG</h3>
<p class="text-sm text-slate-700 leading-relaxed mt-1">Convert document pages into high-quality images.</p>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Information Sections -->
<div class="bg-white border-t border-slate-200 py-24">
<div class="max-w-4xl mx-auto px-6 space-y-24">
<!-- About Section -->
<section id="about" class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div>
<h3 class="text-sm font-black text-indigo-700 uppercase tracking-[0.3em] mb-4">Philosophy</h3>
<h2 class="text-3xl font-bold text-slate-900 mb-6 leading-tight">Securing documents at the source.</h2>
<p class="text-[15px] text-slate-700 leading-relaxed font-medium">
Meri PDF was built to solve a single problem: privacy. Most online tools require you to upload files to their servers. We don't.
<br><br>
By using the latest browser technology, all our tools run 100% on your device. Your data never leaves your computer.
</p>
</div>
<div class="space-y-4">
<div class="bg-slate-50 p-5 rounded-2xl border border-slate-200 flex items-start space-x-4">
<div class="bg-indigo-100 p-2 rounded-lg"><i data-lucide="zap" class="w-5 h-5 text-indigo-700"></i></div>
<div>
<h4 class="font-bold text-slate-900 text-[15px]">Ultra Fast</h4>
<p class="text-xs text-slate-600 mt-1 font-medium">Processing happens at the speed of your hardware.</p>
</div>
</div>
<div class="bg-slate-50 p-5 rounded-2xl border border-slate-200 flex items-start space-x-4">
<div class="bg-emerald-100 p-2 rounded-lg"><i data-lucide="shield-check" class="w-5 h-5 text-emerald-700"></i></div>
<div>
<h4 class="font-bold text-slate-900 text-[15px]">Safe & Confidential</h4>
<p class="text-xs text-slate-600 mt-1 font-medium">No server storage. No logs. No data harvesting.</p>
</div>
</div>
</div>
</section>
<!-- Security Section -->
<section id="security" class="bg-slate-900 rounded-[2.5rem] p-10 md:p-14 text-white">
<div class="max-w-2xl">
<h3 class="text-sm font-black text-indigo-400 uppercase tracking-[0.3em] mb-4">Security Protocol</h3>
<h2 class="text-3xl font-bold mb-8 text-white">Zero-Knowledge Architecture</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-8 text-sm font-medium">
<div class="space-y-3">
<h4 class="text-white font-bold text-base">Encrypted Memory</h4>
<p class="text-sm text-slate-200 opacity-90 leading-relaxed">Files are held only in RAM during processing and wiped instantly after.</p>
</div>
<div class="space-y-3">
<h4 class="text-white font-bold text-base">No Backend</h4>
<p class="text-sm text-slate-200 opacity-90 leading-relaxed">We have no database. There is literally nowhere for your data to be stored.</p>
</div>
</div>
</div>
</section>
</div>
</div>
<!-- Enhanced Footer -->
<footer class="py-12 px-6 border-t border-slate-200 bg-transparent">
<div class="max-w-6xl mx-auto flex flex-col items-center text-center gap-8">
<div class="flex flex-col md:flex-row items-center justify-between w-full gap-6">
<div class="flex items-center space-x-2">
<i data-lucide="layers" class="text-indigo-600 w-5 h-5"></i>
<span class="text-sm font-bold text-slate-900">Meri PDF</span>
</div>
<p class="text-xs font-bold text-slate-500 uppercase tracking-[0.15em]">Designed by VK Basson © 2025</p>
<div class="flex space-x-6">
<a href="https://github.com/vishalkumar-netizen" target="_blank" class="text-slate-500 hover:text-indigo-600 transition-colors">
<i data-lucide="github" class="w-6 h-6"></i>
</a>
<a href="https://forms.gle/pcGmqG6xw9ci1VJ1A" target="_blank" rel="noopener noreferrer" class="text-slate-500 hover:text-indigo-600 transition-colors">
<i data-lucide="mail" class="w-6 h-6"></i>
</a>
</div>
</div>
<div class="pt-6 border-t border-slate-100 w-full">
<p class="text-sm text-slate-600 font-medium max-w-2xl mx-auto">
🚀 This is a GitHub open-source project, free, secure. See the developer profile by clicking the GitHub icon. By VK Basson (Developer)
</p>
<p class="text-indigo-600 font-bold text-sm mt-4 italic">
"Help others; it will be back to you"
</p>
</div>
</div>
</footer>
<!-- Floating Feedback Form Button -->
<a href="https://forms.gle/pcGmqG6xw9ci1VJ1A" target="_blank" rel="noopener noreferrer"
class="fixed bottom-6 right-6 z-50 bg-slate-900 hover:bg-indigo-600 text-white shadow-lg hover:shadow-indigo-500/40 transition-all duration-300 rounded-full py-3 px-4 md:px-5 flex items-center space-x-2 md:space-x-3 group border border-slate-700 hover:border-indigo-500">
<i data-lucide="lightbulb" class="w-5 h-5 text-yellow-400 group-hover:text-white transition-colors"></i>
<span class="text-xs md:text-sm font-bold tracking-wide hidden sm:block">Feedback / Suggestions? Help us improve</span>
<span class="text-xs font-bold tracking-wide sm:hidden">Feedback</span>
</a>
<script>
// Initialize Lucide Icons
lucide.createIcons();
// Tool Filtering Logic
function filterTools() {
const query = document.getElementById('toolSearch').value.toLowerCase();
const tools = document.querySelectorAll('.tool-item');
tools.forEach(tool => {
const keywords = tool.getAttribute('data-title').toLowerCase();
if (keywords.includes(query)) {
tool.style.display = 'block';
} else {
tool.style.display = 'none';
}
});
}
// Header Scroll Shadow
window.addEventListener('scroll', () => {
const nav = document.querySelector('nav');
if (window.scrollY > 20) {
nav.classList.add('shadow-sm');
} else {
nav.classList.remove('shadow-sm');
}
});
</script>
</body>
</html>