58ca4e68db
- Go backend API with full CRUD for all modules (CRM, Sales, Finance, HR, Legal, Marketing, Support, Purchase, Inventory, Projects, Automation, Analytics) - Rust analytics service with parallel report generation - C runtime with POSIX shared memory IPC - PostgreSQL schema with 30+ tables, full migrations - Redis cache, sessions, pub/sub - Kafka event streaming with Zookeeper - WebSocket hub for real-time updates - Automation engine with cron jobs, workflows, event triggers - JWT authentication, multi-tenant from start - Docker Compose with all services - Nginx reverse proxy with rate limiting - Integration tests passing - Feature gap analysis against Fortnox/Odoo/Visma Refs: BOC-001
275 lines
8.4 KiB
HTML
275 lines
8.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Become a Zoomer — Get Paid to Document the World | QUIXZOOM</title>
|
|
<meta name="description" content="Join QUIXZOOM as a Zoomer. Take photos, get verified, and earn money. Flexible work, fast payments, no experience needed.">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }
|
|
.container { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
|
|
|
|
.hero {
|
|
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
|
|
color: white;
|
|
padding: 100px 0 60px;
|
|
text-align: center;
|
|
}
|
|
.hero h1 {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
opacity: 0.9;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 1rem 3rem;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
transition: all 0.2s;
|
|
}
|
|
.btn-white {
|
|
background: white;
|
|
color: #059669;
|
|
}
|
|
.btn-white:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.how-much {
|
|
padding: 4rem 0;
|
|
text-align: center;
|
|
}
|
|
.how-much h2 {
|
|
font-size: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.earnings {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 1.5rem;
|
|
margin-top: 2rem;
|
|
}
|
|
.earning-card {
|
|
background: #f8f9fa;
|
|
padding: 1.5rem;
|
|
border-radius: 12px;
|
|
}
|
|
.earning-card .amount {
|
|
font-size: 2rem;
|
|
font-weight: 800;
|
|
color: #059669;
|
|
}
|
|
.earning-card .description {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.steps {
|
|
background: #f8f9fa;
|
|
padding: 4rem 0;
|
|
}
|
|
.steps h2 {
|
|
text-align: center;
|
|
font-size: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.step-list {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
}
|
|
.step-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 1.5rem;
|
|
background: white;
|
|
padding: 1.5rem;
|
|
border-radius: 12px;
|
|
}
|
|
.step-number {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: #059669;
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: bold;
|
|
flex-shrink: 0;
|
|
}
|
|
.step-item h3 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.step-item p {
|
|
color: #666;
|
|
}
|
|
|
|
.faq {
|
|
padding: 4rem 0;
|
|
}
|
|
.faq h2 {
|
|
text-align: center;
|
|
font-size: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.faq-item {
|
|
border-bottom: 1px solid #e5e7eb;
|
|
padding: 1.5rem 0;
|
|
}
|
|
.faq-item h3 {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.faq-item p {
|
|
color: #666;
|
|
}
|
|
|
|
.cta {
|
|
background: #1a1a2e;
|
|
color: white;
|
|
padding: 4rem 0;
|
|
text-align: center;
|
|
}
|
|
.cta h2 {
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.cta p {
|
|
opacity: 0.9;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
footer {
|
|
background: #111;
|
|
color: white;
|
|
padding: 2rem 0;
|
|
text-align: center;
|
|
}
|
|
footer p {
|
|
opacity: 0.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>Get Paid to Document the World</h1>
|
|
<p>Take photos. Get verified. Earn money. It's that simple.</p>
|
|
<a href="#signup" class="btn btn-white">Become a Zoomer →</a>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="how-much container">
|
|
<h2>How Much Can You Earn?</h2>
|
|
<div class="earnings">
|
|
<div class="earning-card">
|
|
<div class="amount">$0.10</div>
|
|
<div class="description">Standard observation</div>
|
|
</div>
|
|
<div class="earning-card">
|
|
<div class="amount">$0.50</div>
|
|
<div class="description">Verified anomaly</div>
|
|
</div>
|
|
<div class="earning-card">
|
|
<div class="amount">$2.00</div>
|
|
<div class="description">Medium severity issue</div>
|
|
</div>
|
|
<div class="earning-card">
|
|
<div class="amount">$10.00</div>
|
|
<div class="description">Critical issue</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="steps">
|
|
<div class="container">
|
|
<h2>How It Works</h2>
|
|
<div class="step-list">
|
|
<div class="step-item">
|
|
<div class="step-number">1</div>
|
|
<div>
|
|
<h3>Download the App</h3>
|
|
<p>Available on iOS and Android. Sign up in minutes.</p>
|
|
</div>
|
|
</div>
|
|
<div class="step-item">
|
|
<div class="step-number">2</div>
|
|
<div>
|
|
<h3>Verify Your Identity</h3>
|
|
<p>Quick verification process to ensure quality.</p>
|
|
</div>
|
|
</div>
|
|
<div class="step-item">
|
|
<div class="step-number">3</div>
|
|
<div>
|
|
<h3>Choose Missions</h3>
|
|
<p>Pick missions near you or submit spontaneous observations.</p>
|
|
</div>
|
|
</div>
|
|
<div class="step-item">
|
|
<div class="step-number">4</div>
|
|
<div>
|
|
<h3>Take Photos</h3>
|
|
<p>Follow the mission brief. Take clear, well-lit photos.</p>
|
|
</div>
|
|
</div>
|
|
<div class="step-item">
|
|
<div class="step-number">5</div>
|
|
<div>
|
|
<h3>Get Paid</h3>
|
|
<p>Verified submissions are paid within 48 hours via Stripe.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="faq container">
|
|
<h2>Common Questions</h2>
|
|
<div class="faq-item">
|
|
<h3>Do I need experience?</h3>
|
|
<p>No. Anyone with a smartphone can become a Zoomer. We provide guidelines for each mission type.</p>
|
|
</div>
|
|
<div class="faq-item">
|
|
<h3>How do I get paid?</h3>
|
|
<p>Payments are processed via Stripe Connect. Link your bank account and receive direct deposits.</p>
|
|
</div>
|
|
<div class="faq-item">
|
|
<h3>When do I get paid?</h3>
|
|
<p>Verified submissions are paid within 48 hours. Minimum payout is $5.</p>
|
|
</div>
|
|
<div class="faq-item">
|
|
<h3>What equipment do I need?</h3>
|
|
<p>Just a smartphone with a working camera. No special equipment required.</p>
|
|
</div>
|
|
<div class="faq-item">
|
|
<h3>Where can I work?</h3>
|
|
<p>Anywhere missions are available. Coverage is expanding globally.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="cta">
|
|
<div class="container">
|
|
<h2>Ready to Start Earning?</h2>
|
|
<p>Join thousands of Zoomers already documenting the world.</p>
|
|
<a href="#signup" class="btn btn-white">Sign Up Now →</a>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p>© 2026 QUIXZOOM by Landvex</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|