forked from smart361/ClearMic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
442 lines (422 loc) · 25.3 KB
/
Copy pathhelp.html
File metadata and controls
442 lines (422 loc) · 25.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help Center - ClearMic</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#059669',
secondary: '#059669',
accent: '#10B981',
dark: '#111827',
light: '#F9FAFB',
'gray-50': '#F9FAFB',
'gray-100': '#F3F4F6',
'gray-200': '#E5E7EB',
'gray-300': '#D1D5DB',
'gray-400': '#9CA3AF',
'gray-500': '#6B7280',
'gray-600': '#4B5563',
'gray-700': '#374151',
'gray-800': '#1F2937',
'gray-900': '#111827',
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
display: ['Poppins', 'Inter', 'system-ui', 'sans-serif'],
},
fontSize: {
'heading-1': 'clamp(2.5rem, 5vw, 4rem)',
'heading-2': 'clamp(2rem, 4vw, 3rem)',
'heading-3': 'clamp(1.5rem, 3vw, 2rem)',
},
boxShadow: {
'soft': '0 4px 20px rgba(0, 0, 0, 0.05)',
'medium': '0 10px 30px rgba(0, 0, 0, 0.1)',
'strong': '0 20px 60px rgba(0, 0, 0, 0.15)',
},
borderRadius: {
'xl': '0.75rem',
'2xl': '1rem',
'3xl': '1.5rem',
},
spacing: {
'18': '4.5rem',
'72': '18rem',
'84': '21rem',
'96': '24rem',
},
}
}
}
</script>
<style type="text/tailwindcss">
@layer utilities {
.content-auto {
content-visibility: auto;
}
.text-shadow {
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.text-shadow-lg {
text-shadow: 0 4px 8px rgba(0,0,0,0.12);
}
.transition-smooth {
transition: all 0.3s ease-in-out;
}
.transition-transform {
transition: transform 0.3s ease-in-out;
}
.transition-opacity {
transition: opacity 0.3s ease-in-out;
}
.hover-lift {
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.hover-lift:hover {
transform: translateY(-4px);
box-shadow: var(--tw-shadow-strong);
}
.gradient-bg {
background: linear-gradient(135deg, var(--tw-gradient-stops));
}
.glass-effect {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.section-padding {
padding-top: clamp(4rem, 10vh, 6rem);
padding-bottom: clamp(4rem, 10vh, 6rem);
}
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap" rel="stylesheet">
</head>
<body class="font-sans bg-white text-dark">
<!-- Navigation Bar -->
<header class="fixed top-0 left-0 right-0 glass-effect z-50 shadow-soft transition-all duration-300" id="navbar">
<nav class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-3">
<img src="clearmic.png" alt="ClearMic Logo" class="w-12 h-12 rounded-xl shadow-medium">
<span class="text-2xl font-bold text-dark font-display">ClearMic</span>
</div>
<div class="hidden md:flex items-center space-x-10">
<a href="index.html#technology" class="text-gray-700 hover:text-primary font-medium transition-smooth relative group">
Product Highlights
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-primary transition-all duration-300 group-hover:w-full"></span>
</a>
<a href="index.html#testimonials" class="text-gray-700 hover:text-primary font-medium transition-smooth relative group">
Testimonials
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-primary transition-all duration-300 group-hover:w-full"></span>
</a>
<a href="index.html#pricing" class="text-gray-700 hover:text-primary font-medium transition-smooth relative group">
Pricing
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-primary transition-all duration-300 group-hover:w-full"></span>
</a>
<a href="faq.html" class="text-gray-700 hover:text-primary font-medium transition-smooth relative group">
FAQ
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-primary transition-all duration-300 group-hover:w-full"></span>
</a>
<a href="tutorials.html" class="text-gray-700 hover:text-primary font-medium transition-smooth relative group">
Tutorials
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-primary transition-all duration-300 group-hover:w-full"></span>
</a>
<a href="privacy.html" class="text-gray-700 hover:text-primary font-medium transition-smooth relative group">
Privacy
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-primary transition-all duration-300 group-hover:w-full"></span>
</a>
<a href="help.html" class="text-primary font-medium transition-smooth relative group">
Help
<span class="absolute bottom-0 left-0 w-full h-0.5 bg-primary transition-all duration-300"></span>
</a>
<a href="index.html#contact" class="text-gray-700 hover:text-primary font-medium transition-smooth relative group">
Contact Us
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-primary transition-all duration-300 group-hover:w-full"></span>
</a>
</div>
<div class="flex items-center space-x-5">
<a href="index.html#download" class="hidden md:block px-6 py-3 bg-gradient-to-r from-primary to-accent text-white rounded-xl hover:shadow-medium transition-smooth font-medium">
Download Now
</a>
<button class="md:hidden text-gray-700 hover:text-primary transition-smooth focus:outline-none" id="mobile-menu-button">
<i class="fa fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-white shadow-medium absolute w-full left-0 top-full" id="mobile-menu">
<div class="container mx-auto px-4 py-4 flex flex-col space-y-4">
<a href="index.html#technology" class="text-gray-700 hover:text-primary py-2 font-medium transition-smooth">Product Highlights</a>
<a href="index.html#testimonials" class="text-gray-700 hover:text-primary py-2 font-medium transition-smooth">Testimonials</a>
<a href="index.html#pricing" class="text-gray-700 hover:text-primary py-2 font-medium transition-smooth">Pricing</a>
<a href="faq.html" class="text-gray-700 hover:text-primary py-2 font-medium transition-smooth">FAQ</a>
<a href="tutorials.html" class="text-gray-700 hover:text-primary py-2 font-medium transition-smooth">Tutorials</a>
<a href="privacy.html" class="text-gray-700 hover:text-primary py-2 font-medium transition-smooth">Privacy</a>
<a href="help.html" class="text-primary py-2 font-medium transition-smooth">Help</a>
<a href="index.html#contact" class="text-gray-700 hover:text-primary py-2 font-medium transition-smooth">Contact Us</a>
<a href="index.html#download" class="text-center px-6 py-3 bg-gradient-to-r from-primary to-accent text-white rounded-xl font-medium">
Download Now
</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="pt-32 pb-24 bg-gradient-to-br from-light to-white overflow-hidden relative">
<!-- Decorative Elements -->
<div class="absolute -top-20 -right-20 w-96 h-96 bg-primary/5 rounded-full blur-3xl"></div>
<div class="absolute -bottom-40 -left-20 w-96 h-96 bg-secondary/5 rounded-full blur-3xl"></div>
<div class="container mx-auto px-4 relative z-10">
<div class="text-center space-y-6">
<h1 class="text-heading-1 font-bold font-display text-shadow-lg leading-tight">
Help Center
</h1>
<p class="text-xl text-gray-600 leading-relaxed max-w-3xl mx-auto">
Need assistance with ClearMic? Find answers to common questions and troubleshooting guides.
</p>
</div>
</div>
</section>
<!-- Help Content -->
<section class="section-padding bg-white relative overflow-hidden">
<!-- Decorative Elements -->
<div class="absolute top-20 right-20 w-84 h-84 bg-primary/5 rounded-full blur-3xl hidden md:block"></div>
<div class="absolute bottom-20 left-20 w-84 h-84 bg-secondary/5 rounded-full blur-3xl hidden md:block"></div>
<div class="container mx-auto px-4 relative z-10">
<div class="max-w-4xl mx-auto space-y-12">
<!-- Getting Started -->
<div class="bg-white rounded-2xl p-8 hover-lift shadow-soft border border-gray-100">
<h2 class="text-heading-3 font-bold font-display mb-6">Getting Started</h2>
<div class="space-y-6">
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fa fa-download text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2 font-display">How to Download and Install ClearMic</h3>
<p class="text-gray-600 leading-relaxed">
Visit the ClearMic website and click on the "Download Now" button to get the latest version of ClearMic for Windows. Once downloaded, double-click the installer file and follow the on-screen instructions to complete the installation process.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fa fa-microphone text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2 font-display">Setting Up Your Microphone</h3>
<p class="text-gray-600 leading-relaxed">
After installing ClearMic, launch the application and select your physical microphone from the input device dropdown menu. Then, in your meeting or recording software (e.g., Zoom, Teams, OBS), select "Streamlit Virtual Microphone" as the input device.
</p>
</div>
</div>
</div>
</div>
<!-- Troubleshooting -->
<div class="bg-white rounded-2xl p-8 hover-lift shadow-soft border border-gray-100">
<h2 class="text-heading-3 font-bold font-display mb-6">Troubleshooting</h2>
<div class="space-y-6">
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fa fa-exclamation-triangle text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2 font-display">Virtual Microphone Not Showing Up</h3>
<p class="text-gray-600 leading-relaxed">
If the Streamlit Virtual Microphone doesn't appear in your application's input device list, try restarting both ClearMic and your application. If the issue persists, check if your system has the necessary audio drivers installed.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fa fa-clock-o text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2 font-display">Audio Lag or Delay</h3>
<p class="text-gray-600 leading-relaxed">
If you experience audio lag or delay, try reducing the noise reduction level or disabling unnecessary features. Ensure your system meets the minimum requirements and close any resource-intensive applications running in the background.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fa fa-power-off text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2 font-display">ClearMic Not Starting</h3>
<p class="text-gray-600 leading-relaxed">
If ClearMic fails to start, check if you have the latest version installed. Try running the application as an administrator. If the problem continues, contact ClearMic support for assistance.
</p>
</div>
</div>
</div>
</div>
<!-- Advanced Features -->
<div class="bg-white rounded-2xl p-8 hover-lift shadow-soft border border-gray-100">
<h2 class="text-heading-3 font-bold font-display mb-6">Advanced Features</h2>
<div class="space-y-6">
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fa fa-sliders text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2 font-display">Noise Reduction Settings</h3>
<p class="text-gray-600 leading-relaxed">
ClearMic offers adjustable noise reduction levels. Higher levels provide more aggressive noise cancellation but may affect voice clarity. Experiment with different settings to find the optimal balance for your environment.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fa fa-magic text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2 font-display">Voice Beautification</h3>
<p class="text-gray-600 leading-relaxed">
The voice beautification feature enhances your voice quality by optimizing tone and intonation. This feature is particularly useful for professional recordings or presentations where you want your voice to sound its best.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fa fa-mask text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2 font-display">Voice Transformation</h3>
<p class="text-gray-600 leading-relaxed">
Voice transformation allows you to change your voice characteristics. Choose from various presets to suit different scenarios, such as anonymous streaming or gaming. Experiment with different settings to find the voice that best fits your needs.
</p>
</div>
</div>
</div>
</div>
<!-- Contact Support -->
<div class="bg-white rounded-2xl p-8 hover-lift shadow-soft border border-gray-100">
<h2 class="text-heading-3 font-bold font-display mb-6">Contact Support</h2>
<p class="text-gray-600 leading-relaxed mb-4">
If you need further assistance that isn't covered in our help center, please contact our support team:
</p>
<p class="text-gray-600 leading-relaxed mb-4">
<strong>Email:</strong> leospark069@gmail.com
</p>
<p class="text-gray-600 leading-relaxed">
Our support team typically responds within 24-48 hours.
</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white pt-20 pb-10">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 md:gap-10 lg:gap-12 mb-16">
<!-- Company Information -->
<div>
<div class="flex items-center space-x-3 mb-6">
<img src="clearmic.png" alt="ClearMic Logo" class="w-12 h-12 rounded-xl shadow-medium">
<span class="text-2xl font-bold text-white font-display">ClearMic</span>
</div>
<p class="text-gray-400 mb-6">
ClearMic is a professional audio noise cancellation software that provides clear, pure audio experience, allowing you to maintain professional communication in any environment.
</p>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-white/10 rounded-full flex items-center justify-center hover:bg-primary transition-smooth">
<i class="fa fa-facebook"></i>
</a>
<a href="#" class="w-10 h-10 bg-white/10 rounded-full flex items-center justify-center hover:bg-primary transition-smooth">
<i class="fa fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-white/10 rounded-full flex items-center justify-center hover:bg-primary transition-smooth">
<i class="fa fa-linkedin"></i>
</a>
<a href="#" class="w-10 h-10 bg-white/10 rounded-full flex items-center justify-center hover:bg-primary transition-smooth">
<i class="fa fa-instagram"></i>
</a>
</div>
</div>
<!-- Quick Links -->
<div>
<h4 class="text-lg font-semibold mb-6">Quick Links</h4>
<ul class="space-y-4">
<li>
<a href="index.html#about" class="text-gray-400 hover:text-white transition-smooth">About Us</a>
</li>
<li>
<a href="index.html#technology" class="text-gray-400 hover:text-white transition-smooth">Product Highlights</a>
</li>
<li>
<a href="index.html#testimonials" class="text-gray-400 hover:text-white transition-smooth">Testimonials</a>
</li>
<li>
<a href="index.html#pricing" class="text-gray-400 hover:text-white transition-smooth">Pricing Plans</a>
</li>
<li>
<a href="index.html#contact" class="text-gray-400 hover:text-white transition-smooth">Contact Us</a>
</li>
<li>
<a href="index.html#download" class="text-gray-400 hover:text-white transition-smooth">Download Now</a>
</li>
</ul>
</div>
<!-- Resources -->
<div>
<h4 class="text-lg font-semibold mb-6">Resources</h4>
<ul class="space-y-4">
<li>
<a href="help.html" class="text-white hover:text-white transition-smooth">Help Center</a>
</li>
<li>
<a href="tutorials.html" class="text-gray-400 hover:text-white transition-smooth">Usage Tutorials</a>
</li>
<li>
<a href="faq.html" class="text-gray-400 hover:text-white transition-smooth">FAQ</a>
</li>
<li>
<a href="privacy.html" class="text-gray-400 hover:text-white transition-smooth">Privacy Policy</a>
</li>
<li>
<a href="terms.html" class="text-gray-400 hover:text-white transition-smooth">Terms of Service</a>
</li>
</ul>
</div>
</div>
<!-- Copyright Information -->
<div class="border-t border-white/10 pt-10">
<div class="flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2026 ClearMic. All rights reserved.</p>
<div class="flex space-x-6">
<a href="privacy.html" class="text-gray-400 hover:text-white transition-smooth">Privacy Policy</a>
<a href="terms.html" class="text-gray-400 hover:text-white transition-smooth">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition-smooth">Cookie Policy</a>
</div>
</div>
</div>
</div>
</footer>
<!-- JavaScript -->
<script>
// Mobile Menu Toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const mobileMenu = document.getElementById('mobile-menu');
mobileMenu.classList.toggle('hidden');
});
// Navbar Scroll Effect
window.addEventListener('scroll', function() {
const navbar = document.getElementById('navbar');
if (window.scrollY > 50) {
navbar.classList.add('shadow-medium');
navbar.classList.remove('shadow-soft');
} else {
navbar.classList.remove('shadow-medium');
navbar.classList.add('shadow-soft');
}
});
</script>
</body>
</html>