-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
699 lines (606 loc) · 23.1 KB
/
Copy pathindex.html
File metadata and controls
699 lines (606 loc) · 23.1 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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interview Ace Toolkit - Master Behavioral Interviews with Zero Dependencies</title>
<meta name="description" content="Free, privacy-focused interview preparation tools. Practice STAR method, get real-time assistance, and showcase your portfolio - all with zero dependencies.">
<meta property="og:title" content="Interview Ace Toolkit">
<meta property="og:description" content="Master Behavioral Interviews with Zero Dependencies">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--dark-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
--matrix-green: #00ff41;
--card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
--hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}
/* Hero Section */
.hero {
background: var(--primary-gradient);
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 2rem;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
animation: float 20s infinite linear;
}
@keyframes float {
0% { transform: translateY(0); }
100% { transform: translateY(-60px); }
}
.hero-content {
position: relative;
z-index: 1;
animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.tagline {
font-size: clamp(1.2rem, 3vw, 1.8rem);
margin-bottom: 3rem;
opacity: 0.95;
font-weight: 300;
}
.cta-button {
display: inline-block;
padding: 1.2rem 3rem;
font-size: 1.2rem;
background: white;
color: #667eea;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
box-shadow: var(--card-shadow);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: var(--hover-shadow);
}
.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.cta-button:hover::before {
left: 100%;
}
.scroll-indicator {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
40% { transform: translateX(-50%) translateY(-10px); }
60% { transform: translateX(-50%) translateY(-5px); }
}
.scroll-indicator svg {
width: 30px;
height: 30px;
fill: white;
opacity: 0.7;
}
/* Tools Section */
.tools-section {
padding: 5rem 2rem;
background: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.section-title {
text-align: center;
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 1rem;
color: #333;
}
.section-subtitle {
text-align: center;
font-size: 1.2rem;
color: #666;
margin-bottom: 4rem;
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}
.tool-card {
background: white;
border-radius: 15px;
padding: 2rem;
box-shadow: var(--card-shadow);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}
.tool-card:hover {
transform: translateY(-5px);
box-shadow: var(--hover-shadow);
}
.tool-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: var(--primary-gradient);
}
.tool-card.matrix::before {
background: linear-gradient(90deg, var(--matrix-green), #00cc33);
}
.tool-card.demo::before {
background: var(--secondary-gradient);
}
.tool-icon {
width: 60px;
height: 60px;
margin-bottom: 1.5rem;
background: var(--primary-gradient);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
}
.tool-card.matrix .tool-icon {
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.tool-card.demo .tool-icon {
background: var(--secondary-gradient);
}
.tool-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #333;
}
.tool-card p {
color: #666;
margin-bottom: 2rem;
flex-grow: 1;
}
.tool-link {
display: inline-block;
padding: 0.8rem 1.5rem;
background: var(--primary-gradient);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
transition: all 0.3s ease;
text-align: center;
}
.tool-card.matrix .tool-link {
background: linear-gradient(135deg, var(--matrix-green), #00cc33);
color: #000;
}
.tool-card.demo .tool-link {
background: var(--secondary-gradient);
}
.tool-link:hover {
transform: scale(1.05);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* Features Section */
.features-section {
padding: 5rem 2rem;
background: white;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
text-align: center;
}
.feature {
animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.feature h4 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: #333;
}
.feature p {
color: #666;
font-size: 0.95rem;
}
/* Links Section */
.links-section {
padding: 5rem 2rem;
background: var(--dark-gradient);
color: white;
text-align: center;
}
.links-grid {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
margin-top: 2rem;
}
.link-button {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 1rem 2rem;
background: rgba(255, 255, 255, 0.1);
color: white;
text-decoration: none;
border-radius: 8px;
border: 2px solid rgba(255, 255, 255, 0.3);
transition: all 0.3s ease;
font-weight: 500;
}
.link-button:hover {
background: rgba(255, 255, 255, 0.2);
border-color: white;
transform: translateY(-2px);
}
/* Footer */
footer {
background: #1a1a1a;
color: white;
padding: 3rem 2rem;
text-align: center;
}
.footer-content {
max-width: 800px;
margin: 0 auto;
}
.github-stars {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: #333;
color: white;
text-decoration: none;
border-radius: 6px;
margin-bottom: 1.5rem;
transition: all 0.3s ease;
}
.github-stars:hover {
background: #444;
transform: scale(1.05);
}
.footer-text {
margin: 1rem 0;
opacity: 0.8;
}
.made-with-love {
font-size: 1.1rem;
margin-top: 1.5rem;
}
.heart {
color: #e74c3c;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
.hero {
min-height: 100vh;
padding: 1rem;
}
.tools-grid {
grid-template-columns: 1fr;
}
.features-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 2rem;
}
.cta-button {
padding: 1rem 2rem;
font-size: 1.1rem;
}
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Loading animation */
.tools-grid > *, .features-grid > * {
opacity: 0;
animation: fadeInUp 0.6s ease-out forwards;
}
.tools-grid > *:nth-child(1) { animation-delay: 0.1s; }
.tools-grid > *:nth-child(2) { animation-delay: 0.2s; }
.tools-grid > *:nth-child(3) { animation-delay: 0.3s; }
.features-grid > *:nth-child(1) { animation-delay: 0.1s; }
.features-grid > *:nth-child(2) { animation-delay: 0.15s; }
.features-grid > *:nth-child(3) { animation-delay: 0.2s; }
.features-grid > *:nth-child(4) { animation-delay: 0.25s; }
.features-grid > *:nth-child(5) { animation-delay: 0.3s; }
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>Interview Ace Toolkit</h1>
<p class="tagline">Master Behavioral Interviews with Zero Dependencies</p>
<a href="#tools" class="cta-button">Try the Tools</a>
</div>
<div class="scroll-indicator">
<svg viewBox="0 0 24 24">
<path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/>
</svg>
</div>
</section>
<!-- Tools Section -->
<section id="tools" class="tools-section">
<div class="container">
<h2 class="section-title">Three Powerful Tools</h2>
<p class="section-subtitle">Everything you need to ace your next interview</p>
<div class="tools-grid">
<!-- Interview Preparation System -->
<div class="tool-card">
<div class="tool-icon">📝</div>
<h3>Interview Preparation System</h3>
<p>Master the STAR method and practice behavioral questions with our comprehensive preparation system. Build confidence with structured practice sessions.</p>
<a href="src/interview-prep-system.html" class="tool-link">Start Practicing →</a>
</div>
<!-- Live Interview Command Center -->
<div class="tool-card matrix">
<div class="tool-icon">🖥️</div>
<h3>Live Interview Command Center</h3>
<p>Get real-time assistance during interviews with our Matrix-themed command center. Keep your notes, timer, and quick references at your fingertips.</p>
<a href="src/command-center.html" class="tool-link">Launch Command Center →</a>
</div>
<!-- Mobile Demo Showcase -->
<div class="tool-card demo">
<div class="tool-icon">📱</div>
<h3>Mobile Demo Showcase</h3>
<p>iPad-optimized portfolio demonstration tool. Present your work beautifully on any device with smooth animations and professional layouts.</p>
<a href="src/mobile-demo.html" class="tool-link">View Demo Mode →</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features-section">
<div class="container">
<h2 class="section-title">Why Choose Our Toolkit?</h2>
<div class="features-grid">
<div class="feature">
<div class="feature-icon">⚡</div>
<h4>Zero Dependencies</h4>
<p>No frameworks, no libraries. Just pure HTML, CSS, and JavaScript.</p>
</div>
<div class="feature">
<div class="feature-icon">🔒</div>
<h4>Privacy First</h4>
<p>Your data stays on your device. No tracking, no analytics, no cookies.</p>
</div>
<div class="feature">
<div class="feature-icon">💾</div>
<h4>Works Offline</h4>
<p>Download once, use anywhere. No internet connection required.</p>
</div>
<div class="feature">
<div class="feature-icon">🆓</div>
<h4>Free Forever</h4>
<p>Open source under MIT License. No ads, no premium tiers.</p>
</div>
<div class="feature">
<div class="feature-icon">🌐</div>
<h4>Cross-Browser</h4>
<p>Works on Chrome, Firefox, Safari, Edge, and more.</p>
</div>
</div>
</div>
</section>
<!-- Links Section -->
<section class="links-section">
<div class="container">
<h2 class="section-title">Get Started</h2>
<div class="links-grid">
<a href="https://github.com/[USERNAME]/interview-ace-toolkit" class="link-button">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
View on GitHub
</a>
<a href="docs/USER_GUIDE.md" class="link-button">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/>
</svg>
Documentation
</a>
<a href="CONTRIBUTING.md" class="link-button">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/>
</svg>
Contributing
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<a href="https://github.com/[USERNAME]/interview-ace-toolkit" class="github-stars">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/>
</svg>
Star on GitHub
</a>
<p class="footer-text">
MIT License | Free and Open Source
</p>
<p class="made-with-love">
Built with <span class="heart">❤️</span> for job seekers
</p>
</div>
</footer>
<script>
// Smooth scroll for CTA button
document.querySelector('.cta-button').addEventListener('click', function(e) {
e.preventDefault();
document.getElementById('tools').scrollIntoView({ behavior: 'smooth' });
});
// Add intersection observer for scroll animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
}
});
}, observerOptions);
// Observe all animated elements
document.querySelectorAll('.tools-grid > *, .features-grid > *').forEach(el => {
observer.observe(el);
});
// Add parallax effect to hero background
window.addEventListener('scroll', () => {
const scrolled = window.pageYOffset;
const hero = document.querySelector('.hero');
if (hero && scrolled < window.innerHeight) {
hero.style.transform = `translateY(${scrolled * 0.5}px)`;
}
});
// Add hover effect to tool cards
document.querySelectorAll('.tool-card').forEach(card => {
card.addEventListener('mouseenter', function() {
this.style.transform = 'translateY(-5px) scale(1.02)';
});
card.addEventListener('mouseleave', function() {
this.style.transform = 'translateY(0) scale(1)';
});
});
// Add click ripple effect to buttons
document.querySelectorAll('.cta-button, .tool-link, .link-button').forEach(button => {
button.addEventListener('click', function(e) {
const ripple = document.createElement('span');
const rect = this.getBoundingClientRect();
const size = Math.max(rect.width, rect.height);
const x = e.clientX - rect.left - size / 2;
const y = e.clientY - rect.top - size / 2;
ripple.style.width = ripple.style.height = size + 'px';
ripple.style.left = x + 'px';
ripple.style.top = y + 'px';
ripple.classList.add('ripple');
// Add ripple styles if not already present
if (!document.querySelector('style[data-ripple]')) {
const style = document.createElement('style');
style.setAttribute('data-ripple', 'true');
style.innerHTML = `
.ripple {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.5);
transform: scale(0);
animation: ripple-animation 0.6s ease-out;
pointer-events: none;
}
@keyframes ripple-animation {
to {
transform: scale(4);
opacity: 0;
}
}
.cta-button, .tool-link, .link-button {
position: relative;
overflow: hidden;
}
`;
document.head.appendChild(style);
}
this.appendChild(ripple);
setTimeout(() => ripple.remove(), 600);
});
});
// Add typing effect to tagline on load
window.addEventListener('load', () => {
const tagline = document.querySelector('.tagline');
if (tagline) {
const text = tagline.textContent;
tagline.textContent = '';
tagline.style.opacity = '1';
let i = 0;
const typeInterval = setInterval(() => {
if (i < text.length) {
tagline.textContent += text.charAt(i);
i++;
} else {
clearInterval(typeInterval);
}
}, 50);
}
});
</script>
</body>
</html>