landvex: Fixar och tester klara för alla komponenter
- Datafabrik: Dockerfile fix, agentorkestrering fungerar - Vision: Identify-modell, FAISS, OCR alla testade - API: Alla 7 integrationstester passerade - Upplösare: Entitetsupplösning verifierad
This commit is contained in:
@@ -0,0 +1,409 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Understanding Payouts and Levels — quiXzoom Academy</title>
|
||||
<style>
|
||||
:root {
|
||||
--qx-black: #0a0a0a;
|
||||
--qx-white: #ffffff;
|
||||
--qx-blue: #0066FF;
|
||||
--qx-green: #00C853;
|
||||
--qx-gray: #F5F5F7;
|
||||
--qx-dark-gray: #1a1a1a;
|
||||
--qx-text-muted: #6e6e73;
|
||||
--qx-purple: #7B61FF;
|
||||
--qx-orange: #FF6B35;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
|
||||
color: var(--qx-black);
|
||||
background: var(--qx-white);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.progress-container {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
background: white;
|
||||
padding: 12px 20px;
|
||||
border-bottom: 1px solid var(--qx-gray);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background: var(--qx-gray);
|
||||
border-radius: 10px;
|
||||
height: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
background: var(--qx-green);
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
transition: width 0.5s ease;
|
||||
}
|
||||
|
||||
.lesson-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
.lesson-header {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.lesson-module {
|
||||
color: var(--qx-blue);
|
||||
font-size: 0.875rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.lesson-title {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 16px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.lesson-meta {
|
||||
color: var(--qx-text-muted);
|
||||
font-size: 0.9rem;
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.svg-illustration {
|
||||
width: 100%;
|
||||
border-radius: 16px;
|
||||
margin: 32px 0;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.content-block {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.content-block h2 {
|
||||
font-size: 1.75rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.content-block p {
|
||||
margin-bottom: 16px;
|
||||
color: #333;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.content-block ul {
|
||||
margin-left: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.content-block li {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.tip-box {
|
||||
background: #e8f4fd;
|
||||
border-left: 4px solid var(--qx-blue);
|
||||
padding: 24px;
|
||||
margin: 24px 0;
|
||||
border-radius: 0 12px 12px 0;
|
||||
}
|
||||
|
||||
.tip-box strong {
|
||||
color: var(--qx-blue);
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.warning-box {
|
||||
background: #fff3cd;
|
||||
border-left: 4px solid var(--qx-orange);
|
||||
padding: 24px;
|
||||
margin: 24px 0;
|
||||
border-radius: 0 12px 12px 0;
|
||||
}
|
||||
|
||||
.warning-box strong {
|
||||
color: var(--qx-orange);
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.example-box {
|
||||
background: var(--qx-gray);
|
||||
padding: 24px;
|
||||
border-radius: 12px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
.quiz-container {
|
||||
background: var(--qx-gray);
|
||||
padding: 32px;
|
||||
border-radius: 16px;
|
||||
margin: 32px 0;
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.quiz-options {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.quiz-option {
|
||||
background: white;
|
||||
padding: 16px 20px;
|
||||
margin-bottom: 12px;
|
||||
border-radius: 12px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
border: 2px solid transparent;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.quiz-option:hover {
|
||||
border-color: var(--qx-blue);
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
.quiz-option.correct {
|
||||
background: var(--qx-green);
|
||||
color: white;
|
||||
border-color: var(--qx-green);
|
||||
}
|
||||
|
||||
.quiz-option.wrong {
|
||||
background: #ff4444;
|
||||
color: white;
|
||||
border-color: #ff4444;
|
||||
}
|
||||
|
||||
.quiz-option.disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.quiz-letter {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
background: var(--qx-gray);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 600;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.quiz-feedback {
|
||||
margin-top: 20px;
|
||||
padding: 20px;
|
||||
border-radius: 12px;
|
||||
display: none;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.quiz-feedback.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lesson-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 60px;
|
||||
padding-top: 40px;
|
||||
border-top: 2px solid var(--qx-gray);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 14px 28px;
|
||||
border-radius: 10px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
transition: all 0.2s;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.nav-btn.prev {
|
||||
background: var(--qx-gray);
|
||||
color: var(--qx-black);
|
||||
}
|
||||
|
||||
.nav-btn.next {
|
||||
background: var(--qx-blue);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.complete-btn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
margin: 48px auto;
|
||||
padding: 18px 32px;
|
||||
background: var(--qx-green);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.complete-btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 16px rgba(0,200,83,0.3);
|
||||
}
|
||||
|
||||
.complete-btn.completed {
|
||||
background: var(--qx-gray);
|
||||
color: var(--qx-text-muted);
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.lesson-title { font-size: 1.75rem; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="progress-container">
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill" id="lessonProgress" style="width: 0%"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="lesson-container">
|
||||
<header class="lesson-header">
|
||||
<div class="lesson-module">Maximize Earnings — Strategies to earn more</div>
|
||||
<h1 class="lesson-title">Understanding Payouts and Levels</h1>
|
||||
<div class="lesson-meta">
|
||||
<span>⏱️ 10 min</span>
|
||||
<span>🎯 Advanced</span>
|
||||
<span>📚 Reading</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<svg class="svg-illustration" viewBox="0 0 800 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="800" height="400" fill="#f5f5f7"/>
|
||||
<circle cx="100" cy="200" r="50" fill="#00C853"/>
|
||||
<text x="100" y="190" text-anchor="middle" font-size="30" fill="white">📸</text>
|
||||
<text x="100" y="280" text-anchor="middle" font-size="12" fill="#666">Approved</text>
|
||||
<text x="200" y="210" text-anchor="middle" font-size="30" fill="#999">→</text>
|
||||
<circle cx="300" cy="200" r="50" fill="#0066FF"/>
|
||||
<text x="300" y="190" text-anchor="middle" font-size="30" fill="white">🤖</text>
|
||||
<text x="300" y="280" text-anchor="middle" font-size="12" fill="#666">AI Review</text>
|
||||
<text x="400" y="210" text-anchor="middle" font-size="30" fill="#999">→</text>
|
||||
<circle cx="500" cy="200" r="50" fill="#7B61FF"/>
|
||||
<text x="500" y="190" text-anchor="middle" font-size="30" fill="white">✓</text>
|
||||
<text x="500" y="280" text-anchor="middle" font-size="12" fill="#666">Approval</text>
|
||||
<text x="600" y="210" text-anchor="middle" font-size="30" fill="#999">→</text>
|
||||
<circle cx="700" cy="200" r="50" fill="#FFD600"/>
|
||||
<text x="700" y="190" text-anchor="middle" font-size="30" fill="white">💰</text>
|
||||
<text x="700" y="280" text-anchor="middle" font-size="12" fill="#666">Payout</text>
|
||||
</svg>
|
||||
|
||||
<div class="content-block">
|
||||
<p>Learn how the payout system works and how to level up.</p>
|
||||
</div>
|
||||
|
||||
<div class="content-block">
|
||||
<h2>Levels</h2>
|
||||
<ul>
|
||||
<li>Bronze - New Zoomer, standard payout rate</li>
|
||||
<li>Silver - 50+ approved missions, +10% bonus</li>
|
||||
<li>Gold - 200+ approved missions, +25% bonus</li>
|
||||
<li>Platinum - 500+ approved missions, +50% bonus</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="content-block">
|
||||
<h2>Payments</h2>
|
||||
<ul>
|
||||
<li>Payments processed weekly (every Friday)</li>
|
||||
<li>Minimum payout: $10</li>
|
||||
<li>Direct deposit to connected bank account</li>
|
||||
<li>Tax documents available in the app</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<button class="complete-btn" id="completeBtn" onclick="completeLesson()">
|
||||
✅ Mark Lesson Complete
|
||||
</button>
|
||||
|
||||
<nav class="lesson-nav">
|
||||
<a href="/academy/module5/m5l3" class="nav-btn prev">← Previous</a>
|
||||
<a href="/academy/module6/m6l2" class="nav-btn next">Next: Plan Your Route Efficiently →</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const lessonId = 'm6l1';
|
||||
let completedLessons = JSON.parse(localStorage.getItem('academyProgress') || '[]');
|
||||
|
||||
function checkAnswer(element, isCorrect) {
|
||||
const options = document.querySelectorAll('.quiz-option');
|
||||
const feedback = document.getElementById('quizFeedback');
|
||||
|
||||
options.forEach(opt => opt.classList.add('disabled'));
|
||||
|
||||
if (isCorrect) {
|
||||
element.classList.add('correct');
|
||||
feedback.innerHTML = '<strong>✅ Correct!</strong> Well done!';
|
||||
feedback.style.background = '#d4edda';
|
||||
feedback.style.color = '#155724';
|
||||
} else {
|
||||
element.classList.add('wrong');
|
||||
feedback.innerHTML = '<strong>❌ Not quite.</strong> Think it through again.';
|
||||
feedback.style.background = '#f8d7da';
|
||||
feedback.style.color = '#721c24';
|
||||
}
|
||||
|
||||
feedback.classList.add('show');
|
||||
}
|
||||
|
||||
function completeLesson() {
|
||||
if (!completedLessons.includes(lessonId)) {
|
||||
completedLessons.push(lessonId);
|
||||
localStorage.setItem('academyProgress', JSON.stringify(completedLessons));
|
||||
|
||||
const btn = document.getElementById('completeBtn');
|
||||
btn.textContent = '✅ Lesson Complete!';
|
||||
btn.classList.add('completed');
|
||||
btn.disabled = true;
|
||||
|
||||
btn.style.transform = 'scale(1.05)';
|
||||
setTimeout(() => btn.style.transform = 'scale(1)', 200);
|
||||
}
|
||||
}
|
||||
|
||||
if (completedLessons.includes(lessonId)) {
|
||||
const btn = document.getElementById('completeBtn');
|
||||
btn.textContent = '✅ Lesson Complete!';
|
||||
btn.classList.add('completed');
|
||||
btn.disabled = true;
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,395 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Plan Your Route Efficiently — quiXzoom Academy</title>
|
||||
<style>
|
||||
:root {
|
||||
--qx-black: #0a0a0a;
|
||||
--qx-white: #ffffff;
|
||||
--qx-blue: #0066FF;
|
||||
--qx-green: #00C853;
|
||||
--qx-gray: #F5F5F7;
|
||||
--qx-dark-gray: #1a1a1a;
|
||||
--qx-text-muted: #6e6e73;
|
||||
--qx-purple: #7B61FF;
|
||||
--qx-orange: #FF6B35;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
|
||||
color: var(--qx-black);
|
||||
background: var(--qx-white);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.progress-container {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
background: white;
|
||||
padding: 12px 20px;
|
||||
border-bottom: 1px solid var(--qx-gray);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background: var(--qx-gray);
|
||||
border-radius: 10px;
|
||||
height: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
background: var(--qx-green);
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
transition: width 0.5s ease;
|
||||
}
|
||||
|
||||
.lesson-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
.lesson-header {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.lesson-module {
|
||||
color: var(--qx-blue);
|
||||
font-size: 0.875rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.lesson-title {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 16px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.lesson-meta {
|
||||
color: var(--qx-text-muted);
|
||||
font-size: 0.9rem;
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.svg-illustration {
|
||||
width: 100%;
|
||||
border-radius: 16px;
|
||||
margin: 32px 0;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.content-block {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.content-block h2 {
|
||||
font-size: 1.75rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.content-block p {
|
||||
margin-bottom: 16px;
|
||||
color: #333;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.content-block ul {
|
||||
margin-left: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.content-block li {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.tip-box {
|
||||
background: #e8f4fd;
|
||||
border-left: 4px solid var(--qx-blue);
|
||||
padding: 24px;
|
||||
margin: 24px 0;
|
||||
border-radius: 0 12px 12px 0;
|
||||
}
|
||||
|
||||
.tip-box strong {
|
||||
color: var(--qx-blue);
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.warning-box {
|
||||
background: #fff3cd;
|
||||
border-left: 4px solid var(--qx-orange);
|
||||
padding: 24px;
|
||||
margin: 24px 0;
|
||||
border-radius: 0 12px 12px 0;
|
||||
}
|
||||
|
||||
.warning-box strong {
|
||||
color: var(--qx-orange);
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.example-box {
|
||||
background: var(--qx-gray);
|
||||
padding: 24px;
|
||||
border-radius: 12px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
.quiz-container {
|
||||
background: var(--qx-gray);
|
||||
padding: 32px;
|
||||
border-radius: 16px;
|
||||
margin: 32px 0;
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.quiz-options {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.quiz-option {
|
||||
background: white;
|
||||
padding: 16px 20px;
|
||||
margin-bottom: 12px;
|
||||
border-radius: 12px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
border: 2px solid transparent;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.quiz-option:hover {
|
||||
border-color: var(--qx-blue);
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
.quiz-option.correct {
|
||||
background: var(--qx-green);
|
||||
color: white;
|
||||
border-color: var(--qx-green);
|
||||
}
|
||||
|
||||
.quiz-option.wrong {
|
||||
background: #ff4444;
|
||||
color: white;
|
||||
border-color: #ff4444;
|
||||
}
|
||||
|
||||
.quiz-option.disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.quiz-letter {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
background: var(--qx-gray);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 600;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.quiz-feedback {
|
||||
margin-top: 20px;
|
||||
padding: 20px;
|
||||
border-radius: 12px;
|
||||
display: none;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.quiz-feedback.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lesson-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 60px;
|
||||
padding-top: 40px;
|
||||
border-top: 2px solid var(--qx-gray);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 14px 28px;
|
||||
border-radius: 10px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
transition: all 0.2s;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.nav-btn.prev {
|
||||
background: var(--qx-gray);
|
||||
color: var(--qx-black);
|
||||
}
|
||||
|
||||
.nav-btn.next {
|
||||
background: var(--qx-blue);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.complete-btn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
margin: 48px auto;
|
||||
padding: 18px 32px;
|
||||
background: var(--qx-green);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.complete-btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 16px rgba(0,200,83,0.3);
|
||||
}
|
||||
|
||||
.complete-btn.completed {
|
||||
background: var(--qx-gray);
|
||||
color: var(--qx-text-muted);
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.lesson-title { font-size: 1.75rem; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="progress-container">
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill" id="lessonProgress" style="width: 0%"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="lesson-container">
|
||||
<header class="lesson-header">
|
||||
<div class="lesson-module">Maximize Earnings — Strategies to earn more</div>
|
||||
<h1 class="lesson-title">Plan Your Route Efficiently</h1>
|
||||
<div class="lesson-meta">
|
||||
<span>⏱️ 12 min</span>
|
||||
<span>🎯 Advanced</span>
|
||||
<span>📚 Interactive</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<svg class="svg-illustration" viewBox="0 0 800 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="800" height="400" fill="#f5f5f7"/>
|
||||
<circle cx="400" cy="200" r="100" fill="#0066FF" opacity="0.1"/>
|
||||
<text x="400" y="220" text-anchor="middle" font-size="80" fill="#0066FF">📚</text>
|
||||
<text x="400" y="320" text-anchor="middle" font-size="20" fill="#666">quiXzoom Academy</text>
|
||||
</svg>
|
||||
|
||||
<div class="content-block">
|
||||
<p>Smart route planning saves time and increases hourly earnings.</p>
|
||||
</div>
|
||||
|
||||
<div class="tip-box">
|
||||
<strong>💡 Tips</strong>
|
||||
<p>• Morning missions: less traffic, better light</p>
|
||||
<p>• Combine with commuting or errands</p>
|
||||
<p>• Track time per mission to find optimal areas</p>
|
||||
<p>• Focus on high-payout missions first</p>
|
||||
</div>
|
||||
|
||||
<div class="content-block">
|
||||
<h2>Strategies</h2>
|
||||
<ul>
|
||||
<li>Use the route optimizer in the app</li>
|
||||
<li>Cluster missions by area</li>
|
||||
<li>Consider traffic patterns</li>
|
||||
<li>Plan around your daily routine</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<button class="complete-btn" id="completeBtn" onclick="completeLesson()">
|
||||
✅ Mark Lesson Complete
|
||||
</button>
|
||||
|
||||
<nav class="lesson-nav">
|
||||
<a href="/academy/module6/m6l1" class="nav-btn prev">← Previous</a>
|
||||
<a href="/academy/module6/m6l3" class="nav-btn next">Next: Build Your Reputation →</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const lessonId = 'm6l2';
|
||||
let completedLessons = JSON.parse(localStorage.getItem('academyProgress') || '[]');
|
||||
|
||||
function checkAnswer(element, isCorrect) {
|
||||
const options = document.querySelectorAll('.quiz-option');
|
||||
const feedback = document.getElementById('quizFeedback');
|
||||
|
||||
options.forEach(opt => opt.classList.add('disabled'));
|
||||
|
||||
if (isCorrect) {
|
||||
element.classList.add('correct');
|
||||
feedback.innerHTML = '<strong>✅ Correct!</strong> Well done!';
|
||||
feedback.style.background = '#d4edda';
|
||||
feedback.style.color = '#155724';
|
||||
} else {
|
||||
element.classList.add('wrong');
|
||||
feedback.innerHTML = '<strong>❌ Not quite.</strong> Think it through again.';
|
||||
feedback.style.background = '#f8d7da';
|
||||
feedback.style.color = '#721c24';
|
||||
}
|
||||
|
||||
feedback.classList.add('show');
|
||||
}
|
||||
|
||||
function completeLesson() {
|
||||
if (!completedLessons.includes(lessonId)) {
|
||||
completedLessons.push(lessonId);
|
||||
localStorage.setItem('academyProgress', JSON.stringify(completedLessons));
|
||||
|
||||
const btn = document.getElementById('completeBtn');
|
||||
btn.textContent = '✅ Lesson Complete!';
|
||||
btn.classList.add('completed');
|
||||
btn.disabled = true;
|
||||
|
||||
btn.style.transform = 'scale(1.05)';
|
||||
setTimeout(() => btn.style.transform = 'scale(1)', 200);
|
||||
}
|
||||
}
|
||||
|
||||
if (completedLessons.includes(lessonId)) {
|
||||
const btn = document.getElementById('completeBtn');
|
||||
btn.textContent = '✅ Lesson Complete!';
|
||||
btn.classList.add('completed');
|
||||
btn.disabled = true;
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,392 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Build Your Reputation — quiXzoom Academy</title>
|
||||
<style>
|
||||
:root {
|
||||
--qx-black: #0a0a0a;
|
||||
--qx-white: #ffffff;
|
||||
--qx-blue: #0066FF;
|
||||
--qx-green: #00C853;
|
||||
--qx-gray: #F5F5F7;
|
||||
--qx-dark-gray: #1a1a1a;
|
||||
--qx-text-muted: #6e6e73;
|
||||
--qx-purple: #7B61FF;
|
||||
--qx-orange: #FF6B35;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
|
||||
color: var(--qx-black);
|
||||
background: var(--qx-white);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.progress-container {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
background: white;
|
||||
padding: 12px 20px;
|
||||
border-bottom: 1px solid var(--qx-gray);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background: var(--qx-gray);
|
||||
border-radius: 10px;
|
||||
height: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
background: var(--qx-green);
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
transition: width 0.5s ease;
|
||||
}
|
||||
|
||||
.lesson-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
.lesson-header {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.lesson-module {
|
||||
color: var(--qx-blue);
|
||||
font-size: 0.875rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.lesson-title {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 16px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.lesson-meta {
|
||||
color: var(--qx-text-muted);
|
||||
font-size: 0.9rem;
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.svg-illustration {
|
||||
width: 100%;
|
||||
border-radius: 16px;
|
||||
margin: 32px 0;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.content-block {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.content-block h2 {
|
||||
font-size: 1.75rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.content-block p {
|
||||
margin-bottom: 16px;
|
||||
color: #333;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.content-block ul {
|
||||
margin-left: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.content-block li {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.tip-box {
|
||||
background: #e8f4fd;
|
||||
border-left: 4px solid var(--qx-blue);
|
||||
padding: 24px;
|
||||
margin: 24px 0;
|
||||
border-radius: 0 12px 12px 0;
|
||||
}
|
||||
|
||||
.tip-box strong {
|
||||
color: var(--qx-blue);
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.warning-box {
|
||||
background: #fff3cd;
|
||||
border-left: 4px solid var(--qx-orange);
|
||||
padding: 24px;
|
||||
margin: 24px 0;
|
||||
border-radius: 0 12px 12px 0;
|
||||
}
|
||||
|
||||
.warning-box strong {
|
||||
color: var(--qx-orange);
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.example-box {
|
||||
background: var(--qx-gray);
|
||||
padding: 24px;
|
||||
border-radius: 12px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
.quiz-container {
|
||||
background: var(--qx-gray);
|
||||
padding: 32px;
|
||||
border-radius: 16px;
|
||||
margin: 32px 0;
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.quiz-options {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.quiz-option {
|
||||
background: white;
|
||||
padding: 16px 20px;
|
||||
margin-bottom: 12px;
|
||||
border-radius: 12px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
border: 2px solid transparent;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.quiz-option:hover {
|
||||
border-color: var(--qx-blue);
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
.quiz-option.correct {
|
||||
background: var(--qx-green);
|
||||
color: white;
|
||||
border-color: var(--qx-green);
|
||||
}
|
||||
|
||||
.quiz-option.wrong {
|
||||
background: #ff4444;
|
||||
color: white;
|
||||
border-color: #ff4444;
|
||||
}
|
||||
|
||||
.quiz-option.disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.quiz-letter {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
background: var(--qx-gray);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 600;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.quiz-feedback {
|
||||
margin-top: 20px;
|
||||
padding: 20px;
|
||||
border-radius: 12px;
|
||||
display: none;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.quiz-feedback.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lesson-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 60px;
|
||||
padding-top: 40px;
|
||||
border-top: 2px solid var(--qx-gray);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 14px 28px;
|
||||
border-radius: 10px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
transition: all 0.2s;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.nav-btn.prev {
|
||||
background: var(--qx-gray);
|
||||
color: var(--qx-black);
|
||||
}
|
||||
|
||||
.nav-btn.next {
|
||||
background: var(--qx-blue);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.complete-btn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
margin: 48px auto;
|
||||
padding: 18px 32px;
|
||||
background: var(--qx-green);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.complete-btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 16px rgba(0,200,83,0.3);
|
||||
}
|
||||
|
||||
.complete-btn.completed {
|
||||
background: var(--qx-gray);
|
||||
color: var(--qx-text-muted);
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.lesson-title { font-size: 1.75rem; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="progress-container">
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill" id="lessonProgress" style="width: 0%"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="lesson-container">
|
||||
<header class="lesson-header">
|
||||
<div class="lesson-module">Maximize Earnings — Strategies to earn more</div>
|
||||
<h1 class="lesson-title">Build Your Reputation</h1>
|
||||
<div class="lesson-meta">
|
||||
<span>⏱️ 8 min</span>
|
||||
<span>🎯 Advanced</span>
|
||||
<span>📚 Reading</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<svg class="svg-illustration" viewBox="0 0 800 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="800" height="400" fill="#f5f5f7"/>
|
||||
<circle cx="400" cy="200" r="100" fill="#0066FF" opacity="0.1"/>
|
||||
<text x="400" y="220" text-anchor="middle" font-size="80" fill="#0066FF">📚</text>
|
||||
<text x="400" y="320" text-anchor="middle" font-size="20" fill="#666">quiXzoom Academy</text>
|
||||
</svg>
|
||||
|
||||
<div class="content-block">
|
||||
<p>Higher reputation means access to better missions.</p>
|
||||
</div>
|
||||
|
||||
<div class="content-block">
|
||||
<h2>Strategies</h2>
|
||||
<ul>
|
||||
<li>Maintain high approval rate (95%+)</li>
|
||||
<li>Submit on time consistently</li>
|
||||
<li>Provide high-quality photos</li>
|
||||
<li>Accept missions regularly</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="warning-box">
|
||||
<strong>⚠️ Important</strong>
|
||||
<p>Low approval rates or missed deadlines can result in account suspension.</p>
|
||||
</div>
|
||||
|
||||
<button class="complete-btn" id="completeBtn" onclick="completeLesson()">
|
||||
✅ Mark Lesson Complete
|
||||
</button>
|
||||
|
||||
<nav class="lesson-nav">
|
||||
<a href="/academy/module6/m6l2" class="nav-btn prev">← Previous</a>
|
||||
<a href="/academy/module6/m6l4" class="nav-btn next">Next: Tax Optimization for Zoomers →</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const lessonId = 'm6l3';
|
||||
let completedLessons = JSON.parse(localStorage.getItem('academyProgress') || '[]');
|
||||
|
||||
function checkAnswer(element, isCorrect) {
|
||||
const options = document.querySelectorAll('.quiz-option');
|
||||
const feedback = document.getElementById('quizFeedback');
|
||||
|
||||
options.forEach(opt => opt.classList.add('disabled'));
|
||||
|
||||
if (isCorrect) {
|
||||
element.classList.add('correct');
|
||||
feedback.innerHTML = '<strong>✅ Correct!</strong> Well done!';
|
||||
feedback.style.background = '#d4edda';
|
||||
feedback.style.color = '#155724';
|
||||
} else {
|
||||
element.classList.add('wrong');
|
||||
feedback.innerHTML = '<strong>❌ Not quite.</strong> Think it through again.';
|
||||
feedback.style.background = '#f8d7da';
|
||||
feedback.style.color = '#721c24';
|
||||
}
|
||||
|
||||
feedback.classList.add('show');
|
||||
}
|
||||
|
||||
function completeLesson() {
|
||||
if (!completedLessons.includes(lessonId)) {
|
||||
completedLessons.push(lessonId);
|
||||
localStorage.setItem('academyProgress', JSON.stringify(completedLessons));
|
||||
|
||||
const btn = document.getElementById('completeBtn');
|
||||
btn.textContent = '✅ Lesson Complete!';
|
||||
btn.classList.add('completed');
|
||||
btn.disabled = true;
|
||||
|
||||
btn.style.transform = 'scale(1.05)';
|
||||
setTimeout(() => btn.style.transform = 'scale(1)', 200);
|
||||
}
|
||||
}
|
||||
|
||||
if (completedLessons.includes(lessonId)) {
|
||||
const btn = document.getElementById('completeBtn');
|
||||
btn.textContent = '✅ Lesson Complete!';
|
||||
btn.classList.add('completed');
|
||||
btn.disabled = true;
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,392 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Tax Optimization for Zoomers — quiXzoom Academy</title>
|
||||
<style>
|
||||
:root {
|
||||
--qx-black: #0a0a0a;
|
||||
--qx-white: #ffffff;
|
||||
--qx-blue: #0066FF;
|
||||
--qx-green: #00C853;
|
||||
--qx-gray: #F5F5F7;
|
||||
--qx-dark-gray: #1a1a1a;
|
||||
--qx-text-muted: #6e6e73;
|
||||
--qx-purple: #7B61FF;
|
||||
--qx-orange: #FF6B35;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
|
||||
color: var(--qx-black);
|
||||
background: var(--qx-white);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.progress-container {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
background: white;
|
||||
padding: 12px 20px;
|
||||
border-bottom: 1px solid var(--qx-gray);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background: var(--qx-gray);
|
||||
border-radius: 10px;
|
||||
height: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
background: var(--qx-green);
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
transition: width 0.5s ease;
|
||||
}
|
||||
|
||||
.lesson-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
.lesson-header {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.lesson-module {
|
||||
color: var(--qx-blue);
|
||||
font-size: 0.875rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.lesson-title {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 16px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.lesson-meta {
|
||||
color: var(--qx-text-muted);
|
||||
font-size: 0.9rem;
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.svg-illustration {
|
||||
width: 100%;
|
||||
border-radius: 16px;
|
||||
margin: 32px 0;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.content-block {
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.content-block h2 {
|
||||
font-size: 1.75rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.content-block p {
|
||||
margin-bottom: 16px;
|
||||
color: #333;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.content-block ul {
|
||||
margin-left: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.content-block li {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.tip-box {
|
||||
background: #e8f4fd;
|
||||
border-left: 4px solid var(--qx-blue);
|
||||
padding: 24px;
|
||||
margin: 24px 0;
|
||||
border-radius: 0 12px 12px 0;
|
||||
}
|
||||
|
||||
.tip-box strong {
|
||||
color: var(--qx-blue);
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.warning-box {
|
||||
background: #fff3cd;
|
||||
border-left: 4px solid var(--qx-orange);
|
||||
padding: 24px;
|
||||
margin: 24px 0;
|
||||
border-radius: 0 12px 12px 0;
|
||||
}
|
||||
|
||||
.warning-box strong {
|
||||
color: var(--qx-orange);
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.example-box {
|
||||
background: var(--qx-gray);
|
||||
padding: 24px;
|
||||
border-radius: 12px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
.quiz-container {
|
||||
background: var(--qx-gray);
|
||||
padding: 32px;
|
||||
border-radius: 16px;
|
||||
margin: 32px 0;
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.quiz-options {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.quiz-option {
|
||||
background: white;
|
||||
padding: 16px 20px;
|
||||
margin-bottom: 12px;
|
||||
border-radius: 12px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
border: 2px solid transparent;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.quiz-option:hover {
|
||||
border-color: var(--qx-blue);
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
.quiz-option.correct {
|
||||
background: var(--qx-green);
|
||||
color: white;
|
||||
border-color: var(--qx-green);
|
||||
}
|
||||
|
||||
.quiz-option.wrong {
|
||||
background: #ff4444;
|
||||
color: white;
|
||||
border-color: #ff4444;
|
||||
}
|
||||
|
||||
.quiz-option.disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.quiz-letter {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
background: var(--qx-gray);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 600;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.quiz-feedback {
|
||||
margin-top: 20px;
|
||||
padding: 20px;
|
||||
border-radius: 12px;
|
||||
display: none;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.quiz-feedback.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lesson-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 60px;
|
||||
padding-top: 40px;
|
||||
border-top: 2px solid var(--qx-gray);
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
padding: 14px 28px;
|
||||
border-radius: 10px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
transition: all 0.2s;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.nav-btn.prev {
|
||||
background: var(--qx-gray);
|
||||
color: var(--qx-black);
|
||||
}
|
||||
|
||||
.nav-btn.next {
|
||||
background: var(--qx-blue);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.complete-btn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
margin: 48px auto;
|
||||
padding: 18px 32px;
|
||||
background: var(--qx-green);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.complete-btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 16px rgba(0,200,83,0.3);
|
||||
}
|
||||
|
||||
.complete-btn.completed {
|
||||
background: var(--qx-gray);
|
||||
color: var(--qx-text-muted);
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.lesson-title { font-size: 1.75rem; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="progress-container">
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill" id="lessonProgress" style="width: 0%"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="lesson-container">
|
||||
<header class="lesson-header">
|
||||
<div class="lesson-module">Maximize Earnings — Strategies to earn more</div>
|
||||
<h1 class="lesson-title">Tax Optimization for Zoomers</h1>
|
||||
<div class="lesson-meta">
|
||||
<span>⏱️ 15 min</span>
|
||||
<span>🎯 Advanced</span>
|
||||
<span>📚 Video</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<svg class="svg-illustration" viewBox="0 0 800 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="800" height="400" fill="#f5f5f7"/>
|
||||
<circle cx="400" cy="200" r="100" fill="#0066FF" opacity="0.1"/>
|
||||
<text x="400" y="220" text-anchor="middle" font-size="80" fill="#0066FF">📚</text>
|
||||
<text x="400" y="320" text-anchor="middle" font-size="20" fill="#666">quiXzoom Academy</text>
|
||||
</svg>
|
||||
|
||||
<div class="content-block">
|
||||
<p>Understanding taxes helps you keep more of your earnings.</p>
|
||||
</div>
|
||||
|
||||
<div class="content-block">
|
||||
<h2>Deductions You Can Claim</h2>
|
||||
<ul>
|
||||
<li>Mileage to and from mission locations</li>
|
||||
<li>Phone and data plan costs</li>
|
||||
<li>Camera equipment and accessories</li>
|
||||
<li>Home office expenses (if applicable)</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="warning-box">
|
||||
<strong>⚠️ Important</strong>
|
||||
<p>You are responsible for reporting your income. quiXzoom does not withhold taxes.</p>
|
||||
</div>
|
||||
|
||||
<button class="complete-btn" id="completeBtn" onclick="completeLesson()">
|
||||
✅ Mark Lesson Complete
|
||||
</button>
|
||||
|
||||
<nav class="lesson-nav">
|
||||
<a href="/academy/module6/m6l3" class="nav-btn prev">← Previous</a>
|
||||
<a href="/academy" class="nav-btn next">Back to Academy →</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const lessonId = 'm6l4';
|
||||
let completedLessons = JSON.parse(localStorage.getItem('academyProgress') || '[]');
|
||||
|
||||
function checkAnswer(element, isCorrect) {
|
||||
const options = document.querySelectorAll('.quiz-option');
|
||||
const feedback = document.getElementById('quizFeedback');
|
||||
|
||||
options.forEach(opt => opt.classList.add('disabled'));
|
||||
|
||||
if (isCorrect) {
|
||||
element.classList.add('correct');
|
||||
feedback.innerHTML = '<strong>✅ Correct!</strong> Well done!';
|
||||
feedback.style.background = '#d4edda';
|
||||
feedback.style.color = '#155724';
|
||||
} else {
|
||||
element.classList.add('wrong');
|
||||
feedback.innerHTML = '<strong>❌ Not quite.</strong> Think it through again.';
|
||||
feedback.style.background = '#f8d7da';
|
||||
feedback.style.color = '#721c24';
|
||||
}
|
||||
|
||||
feedback.classList.add('show');
|
||||
}
|
||||
|
||||
function completeLesson() {
|
||||
if (!completedLessons.includes(lessonId)) {
|
||||
completedLessons.push(lessonId);
|
||||
localStorage.setItem('academyProgress', JSON.stringify(completedLessons));
|
||||
|
||||
const btn = document.getElementById('completeBtn');
|
||||
btn.textContent = '✅ Lesson Complete!';
|
||||
btn.classList.add('completed');
|
||||
btn.disabled = true;
|
||||
|
||||
btn.style.transform = 'scale(1.05)';
|
||||
setTimeout(() => btn.style.transform = 'scale(1)', 200);
|
||||
}
|
||||
}
|
||||
|
||||
if (completedLessons.includes(lessonId)) {
|
||||
const btn = document.getElementById('completeBtn');
|
||||
btn.textContent = '✅ Lesson Complete!';
|
||||
btn.classList.add('completed');
|
||||
btn.disabled = true;
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user