Skip to content

Commit 1448d3a

Browse files
committed
added FAQS
1 parent bb3d561 commit 1448d3a

2 files changed

Lines changed: 147 additions & 10 deletions

File tree

wasp/assets/css/style.css

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,33 @@ footer {
400400
color: #666;
401401
}
402402

403-
/* Tenor GIF spacing */
404-
.tenor-gif-embed {
405-
width: 100% !important;
406-
}
403+
/* FAQ Accordion */
404+
.accordion-button {
405+
background-color: var(--card-bg) !important;
406+
color: var(--terminal-green) !important;
407+
border: 1px solid rgba(0, 255, 65, 0.1) !important;
408+
box-shadow: none !important;
409+
font-weight: 700;
410+
}
411+
412+
.accordion-button::after {
413+
filter: invert(1) hue-rotate(90deg);
414+
}
415+
416+
.accordion-button:not(.collapsed) {
417+
border-bottom: 2px solid var(--terminal-green) !important;
418+
background-color: #000 !important;
419+
}
420+
421+
.accordion-body {
422+
background-color: #000;
423+
color: var(--text-muted);
424+
border: 1px solid rgba(0, 255, 65, 0.1);
425+
border-top: none;
426+
}
427+
428+
.accordion-item {
429+
border: none !important;
430+
margin-bottom: 1rem;
431+
background: transparent !important;
432+
}

wasp/index.html

Lines changed: 117 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
<li class="nav-item"><a class="nav-link" href="#problem">The Problem</a></li>
5959
<li class="nav-item"><a class="nav-link" href="#features">Solution</a></li>
6060
<li class="nav-item"><a class="nav-link" href="#sarcasm">Sarcasm.exe</a></li>
61+
<li class="nav-item"><a class="nav-link" href="#faq">FAQ</a></li>
6162
<li class="nav-item"><a class="nav-link btn btn-terminal ms-lg-3 mt-2 mt-lg-0" href="#download">Get
6263
WASP</a></li>
6364
</ul>
@@ -354,6 +355,100 @@ <h2 class="section-title">The "Unshakeable" Work Ethic</h2>
354355
</div>
355356
</div>
356357
</section>
358+
+
359+
+ <!-- FAQ Section -->
360+
+ <section id="faq" class="py-5">
361+
+ <div class="container py-5">
362+
+ <div class="text-center mb-5">
363+
+ <h2 class="section-title">The HR Interrogation Guide (FAQ)</h2>
364+
+ <p class="text-secondary lead">Classified inquiries for the modern workplace rebel.</p>
365+
+ </div>
366+
+ <div class="row justify-content-center">
367+
+ <div class="col-lg-8">
368+
+ <div class="accordion" id="faqAccordion">
369+
+ <!-- Q1 -->
370+
+ <div class="accordion-item">
371+
+ <h2 class="accordion-header">
372+
+ <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
373+
data-bs-target="#faq1">
374+
+ > Is this legal?
375+
+ </button>
376+
+ </h2>
377+
+ <div id="faq1" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
378+
+ <div class="accordion-body">
379+
+ Using software to move your mouse? Yes. Check your employment contract for
380+
specifics.
381+
+ </div>
382+
+ </div>
383+
+ </div>
384+
+
385+
+ <!-- Q2 -->
386+
+ <div class="accordion-item">
387+
+ <h2 class="accordion-header">
388+
+ <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
389+
data-bs-target="#faq2">
390+
+ > Will I get fired?
391+
+ </button>
392+
+ </h2>
393+
+ <div id="faq2" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
394+
+ <div class="accordion-body">
395+
+ Not if you're smart about it. Still deliver your work, just take reasonable
396+
breaks.
397+
+ </div>
398+
+ </div>
399+
+ </div>
400+
+
401+
+ <!-- Q3 -->
402+
+ <div class="accordion-item">
403+
+ <h2 class="accordion-header">
404+
+ <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
405+
data-bs-target="#faq3">
406+
+ > Can tracking software detect this?
407+
+ </button>
408+
+ </h2>
409+
+ <div id="faq3" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
410+
+ <div class="accordion-body">
411+
+ WASP simulates natural movement. But don't push your luck with 24/7 usage.
412+
+ </div>
413+
+ </div>
414+
+ </div>
415+
+
416+
+ <!-- Q4 -->
417+
+ <div class="accordion-item">
418+
+ <h2 class="accordion-header">
419+
+ <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
420+
data-bs-target="#faq4">
421+
+ > Isn't this unethical?
422+
+ </button>
423+
+ </h2>
424+
+ <div id="faq4" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
425+
+ <div class="accordion-body">
426+
+ Is micromanaging employees unethical? We think treating workers like humans
427+
matters more.
428+
+ </div>
429+
+ </div>
430+
+ </div>
431+
+
432+
+ <!-- Q5 -->
433+
+ <div class="accordion-item">
434+
+ <h2 class="accordion-header">
435+
+ <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
436+
data-bs-target="#faq5">
437+
+ > What if I work from home?
438+
+ </button>
439+
+ </h2>
440+
+ <div id="faq5" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
441+
+ <div class="accordion-body">
442+
+ Perfect! Use it for lunch, household chores, or that quick nap you need.
443+
+ </div>
444+
+ </div>
445+
+ </div>
446+
+
447+
+ </div>
448+
+ </div>
449+
+ </div>
450+
+ </div>
451+
+ </section>
357452

358453
<!-- Download Section -->
359454
<section id="download" class="py-5 bg-dark">
@@ -474,26 +569,42 @@ <h5 class="mb-2">Source</h5>
474569
"mainEntity": [
475570
{
476571
"@type": "Question",
477-
"name": "How can I stay active on Microsoft Teams and Slack while away from my desk?",
572+
"name": "Is this legal?",
478573
"acceptedAnswer": {
479574
"@type": "Answer",
480-
"text": "WASP (Workplace Activity Simulator) simulates natural mouse movements and keystrokes at random intervals to keep your status 'Active' on collaboration tools like Microsoft Teams, Slack, and Zoom."
575+
"text": "Using software to move your mouse? Yes. Check your employment contract for specifics."
481576
}
482577
},
483578
{
484579
"@type": "Question",
485-
"name": "Is WASP undetectable by employee monitoring software?",
580+
"name": "Will I get fired?",
486581
"acceptedAnswer": {
487582
"@type": "Answer",
488-
"text": "Yes, WASP uses physics-based algorithms to simulate human-like mouse movements (natural curves) and random timing intervals, making it virtually undetectable to typical inactivity tracking bots."
583+
"text": "Not if you're smart about it. Still deliver your work, just take reasonable breaks."
489584
}
490585
},
491586
{
492587
"@type": "Question",
493-
"name": "Does WASP prevent my computer from locking or going to sleep?",
588+
"name": "Can tracking software detect this?",
494589
"acceptedAnswer": {
495590
"@type": "Answer",
496-
"text": "Yes, by simulating continuous user activity, WASP prevents your system from triggering idle timers, thereby stopping the screen from locking or the PC from entering sleep mode."
591+
"text": "WASP simulates natural movement. But don't push your luck with 24/7 usage."
592+
}
593+
},
594+
{
595+
"@type": "Question",
596+
"name": "Isn't this unethical?",
597+
"acceptedAnswer": {
598+
"@type": "Answer",
599+
"text": "Is micromanaging employees unethical? We think treating workers like humans matters more."
600+
}
601+
},
602+
{
603+
"@type": "Question",
604+
"name": "What if I work from home?",
605+
"acceptedAnswer": {
606+
"@type": "Answer",
607+
"text": "Perfect! Use it for lunch, household chores, or that quick nap you need."
497608
}
498609
}
499610
]

0 commit comments

Comments
 (0)