-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
423 lines (379 loc) · 18.2 KB
/
index.html
File metadata and controls
423 lines (379 loc) · 18.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InterviewLens</title>
<link rel="stylesheet" href="styles.css">
<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=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="logo.png">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<h1>Interview<span>Lens</span></h1>
</div>
<nav>
<ul>
<li><a href="#" class="active">Home</a></li>
<li><a href="#experiences">Experiences</a></li>
<li><a href="#companies">Companies</a></li>
<li><a href="#about">About</a></li>
<li><a href="devcrew page/devcrew.html">DevCrew</a></li>
</ul>
</nav>
<div class="auth-buttons">
<a href="index2.html">
<button class="btn btn-primary">Get Started</button>
</a>
</div>
<div class="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<button id="dark-mode-toggle" class="dark-mode-btn">
<i id="dark-icon" class="dark-icon">🌙</i>
</button>
</div>
</header>
<section class="hero reveal">
<div class="container">
<div class="hero-content">
<h1>Share Your Interview Journey</h1>
<p>Help others prepare by sharing your interview experiences at top companies</p>
<!--- <button class="btn btn-primary btn-large">Share Your Experience</button> -->
<button class="btn btn-primary btn-large" id="share-experience-btn">Share Your Experience</button>
</div>
<div class="hero-image">
<img src="banner.png" alt="Interview Illustration">
</div>
</div>
</section>
<section class="stats reveal">
<div class="container">
<div class="stat-item">
<h2>1,200+</h2>
<p>Interview Experiences</p>
</div>
<div class="stat-item">
<h2>500+</h2>
<p>Companies</p>
</div>
<div class="stat-item">
<h2>10,000+</h2>
<p>Community Members</p>
</div>
</div>
</section>
<section id="experiences" class="experiences reveal">
<div class="container">
<div class="section-header">
<h2>Recent Experiences</h2>
<div class="filter-container">
<div class="search-box">
<input type="text" placeholder="Search by company or position...">
<button class="search-btn">Search</button>
</div>
<div class="">
<select id="company-filter">
<option value="">All Companies</option>
<option value="google">Google</option>
<option value="microsoft">Microsoft</option>
<option value="amazon">Amazon</option>
<option value="apple">Apple</option>
<option value="meta">Meta</option>
</select>
</div>
</div>
</div>
<div class="experience-grid">
<!-- Experience Card 1 -->
<div class="experience-card">
<div class="card-header">
<img src="images/google.png" alt="Google Logo" class="company-logo">
<div class="card-meta">
<h3>Software Engineer Interview</h3>
<div class="company-name">Google</div>
<div class="experience-date">March 15, 2025</div>
</div>
<div class="experience-result success">Offer Received</div>
</div>
<div class="card-content">
<p>My interview process at Google consisted of 5 rounds: initial screening, 2 technical interviews, a system design round, and a behavioral interview. The technical questions focused on data structures, algorithms, and problem-solving skills.</p>
</div>
<div class="card-footer">
<div class="difficulty">
<span class="label">Difficulty:</span>
<span class="rating">
<span class="filled"></span>
<span class="filled"></span>
<span class="filled"></span>
<span class="filled"></span>
<span></span>
</span>
</div>
<button class="btn btn-outline" onclick="redirectToDetails(
'Google',
'Software Engineer',
'March 15, 2025',
'Offer Received',
'https://linkedin.com/in/example',
'My interview process at Google consisted of 5 rounds...'
);">
Read More
</button>
</div>
</div>
<!-- Experience Card 2 -->
<div class="experience-card">
<div class="card-header">
<img src="images/microsoft.png" alt="Microsoft Logo" class="company-logo">
<div class="card-meta">
<h3>Product Manager Interview</h3>
<div class="company-name">Microsoft</div>
<div class="experience-date">February 28, 2025</div>
</div>
<div class="experience-result success">Offer Recieved</div>
</div>
<div class="card-content">
<p>The Microsoft PM interview was a full day with 5 different interviewers. Questions ranged from product design, strategy, technical understanding, and behavioral scenarios. The team was friendly and the process was well-organized.</p>
</div>
<div class="card-footer">
<div class="difficulty">
<span class="label">Difficulty:</span>
<span class="rating">
<span class="filled"></span>
<span class="filled"></span>
<span class="filled"></span>
<span></span>
<span></span>
</span>
</div>
<button class="btn btn-outline" onclick="redirectToDetails(
'Google',
'Software Engineer',
'March 15, 2025',
'Offer Received',
'https://linkedin.com/in/example',
'My interview process at Google consisted of 5 rounds...'
);">
Read More
</button>
</div>
</div>
<!-- Experience Card 3 -->
<div class="experience-card">
<div class="card-header">
<img src="images/amazon.webp" alt="Amazon Logo" class="company-logo">
<div class="card-meta">
<h3>Data Scientist Interview</h3>
<div class="company-name">Amazon</div>
<div class="experience-date">Feb 2, 2025</div>
</div>
<div class="experience-result rejected">No Offer</div>
</div>
<div class="card-content">
<p>The Amazon interview process was intense. It started with an online assessment, followed by a phone screen and then an onsite with 5 back-to-back interviews. They focused heavily on their leadership principles and technical skills.</p>
</div>
<div class="card-footer">
<div class="difficulty">
<span class="label">Difficulty:</span>
<span class="rating">
<span class="filled"></span>
<span class="filled"></span>
<span class="filled"></span>
<span class="filled"></span>
<span class="filled"></span>
</span>
</div>
<button class="btn btn-outline" onclick="redirectToDetails(
'Google',
'Software Engineer',
'March 15, 2025',
'Offer Received',
'https://linkedin.com/in/example',
'My interview process at Google consisted of 5 rounds...'
);">
Read More
</button>
</div>
</div>
<!-- Experience Card 4 -->
<div class="experience-card">
<div class="card-header">
<img src="images/meta.webp" alt="Meta Logo" class="company-logo">
<div class="card-meta">
<h3>Frontend Engineer Interview</h3>
<div class="company-name">Meta</div>
<div class="experience-date">Jan 10, 2025</div>
</div>
<div class="experience-result success">Offer Received</div>
</div>
<div class="card-content">
<p>Meta's interview process was comprehensive. After the initial screening, I had a technical phone interview followed by a virtual onsite with 4 interviews. The questions covered JavaScript, React, CSS, and system design.</p>
</div>
<div class="card-footer">
<div class="difficulty">
<span class="label">Difficulty:</span>
<span class="rating">
<span class="filled"></span>
<span class="filled"></span>
<span class="filled"></span>
<span class="filled"></span>
<span></span>
</span>
</div>
<button class="btn btn-outline" onclick="redirectToDetails(
'Google',
'Software Engineer',
'March 15, 2025',
'Offer Received',
'https://linkedin.com/in/example',
'My interview process at Google consisted of 5 rounds...'
);">
Read More
</button>
</div>
</div>
</div>
<div class="load-more">
<button class="btn btn-secondary">Load More Experiences</button>
</div>
</div>
</section>
<section class="share-experience">
<div class="container">
<div class="share-content">
<h2>Share Your Interview Experience</h2>
<p>Help others prepare better by sharing your interview journey. Your insights could be the key to someone else's success!</p>
<button class="btn btn-primary btn-large" id="open-form-btn">Share Now</button>
</div>
</div>
</section>
<section id="companies" class="top-companies">
<div class="container">
<h2>Top Companies</h2>
<div class="companies-grid">
<div class="company-card">
<img src="images/google.png" alt="Google">
<h3>Google</h3>
<p>125 experiences</p>
</div>
<div class="company-card">
<img src="images/microsoft.png" alt="Microsoft">
<h3>Microsoft</h3>
<p>98 experiences</p>
</div>
<div class="company-card">
<img src="images/amazon.webp" alt="Amazon">
<h3>Amazon</h3>
<p>112 experiences</p>
</div>
<div class="company-card">
<img src="images/apple.png" alt="Apple">
<h3>Apple</h3>
<p>87 experiences</p>
</div>
<div class="company-card">
<img src="images/meta.webp" alt="Meta">
<h3>Meta</h3>
<p>76 experiences</p>
</div>
<div class="company-card">
<img src="images/linkedin.webp" alt="LinkedIn">
<h3>LinkedIn</h3>
<p>65 experiences</p>
</div>
</div>
<div class="view-all">
<button class="btn btn-secondary">View All Companies</button>
</div>
</div>
</section>
<section id="about" class="about">
<div class="container">
<div class="about-content">
<h2>About InterviewLens</h2>
<p>InterviewLens was created with a simple mission: to help job seekers prepare better for interviews by learning from others' experiences. Our community-driven platform allows professionals to share their interview journeys, helping others navigate the often stressful interview process.</p>
<p>Whether you're preparing for your first job interview or looking to switch to a new company, our platform provides valuable insights into what to expect and how to prepare.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<h2>Interview<span>Lens</span></h2>
<p>Sharing interview experiences to help you succeed</p>
<br>
<h3>Team INTMAIN()</h3>
<br>
<h3>Hack Storm 2.25</h3>
</div>
</div>
</div>
</footer>
<!-- Modal for submitting experience -->
<div class="modal" id="experience-modal">
<div class="modal-content">
<div class="modal-header">
<h2>Share Your Interview Experience</h2>
<button class="close-btn">×</button>
</div>
<div class="modal-body">
<form id="experience-form">
<div class="form-group">
<label for="company">Company Name*</label>
<input type="text" id="company" required>
</div>
<div class="form-group">
<label for="position">Position Applied For*</label>
<input type="text" id="position" required>
</div>
<div class="form-group">
<label for="date">Interview Date*</label>
<input type="date" id="date" required>
</div>
<div class="form-group">
<label for="result">Interview Result*</label>
<select id="result" required>
<option value="">Select Result</option>
<option value="offer">Received Offer</option>
<option value="rejected">No Offer</option>
<option value="waiting">Waiting for Response</option>
</select>
</div>
<div class="form-group">
<label for="difficulty">Interview Difficulty (1-5)*</label>
<div class="rating-input">
<span class="rating-star" data-value="1"></span>
<span class="rating-star" data-value="2"></span>
<span class="rating-star" data-value="3"></span>
<span class="rating-star" data-value="4"></span>
<span class="rating-star" data-value="5"></span>
</div>
<input type="hidden" id="difficulty" value="0" required>
</div>
<div class="form-group">
<label for="experience">Interview Experience*</label>
<textarea id="experience" rows="6" required placeholder="Describe your interview process, questions asked, and any advice for others..."></textarea>
</div>
<div class="form-group">
<label for="tips">Tips for Other Candidates</label>
<textarea id="tips" rows="4" placeholder="Share any preparation tips or resources that helped you..."></textarea>
</div>
<div class="form-actions">
<button type="button" class="btn btn-outline" id="cancel-btn">Cancel</button>
<button type="submit" class="btn btn-primary">Submit Experience</button>
</div>
</form>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>