-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding_page.html
More file actions
475 lines (424 loc) · 16.4 KB
/
Copy pathlanding_page.html
File metadata and controls
475 lines (424 loc) · 16.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ScraperPro - Web Scraping Made Easy | 7-Day Free Trial</title>
<meta name="description" content="Professional web scraping platform. Extract data from any website without coding. Try Pro or Enterprise free for 7 days.">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
}
.hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 100px 20px;
text-align: center;
}
.hero h1 {
font-size: 3.5em;
margin-bottom: 20px;
font-weight: 700;
}
.hero p {
font-size: 1.5em;
margin-bottom: 40px;
opacity: 0.95;
}
.cta-button {
background: white;
color: #667eea;
padding: 20px 50px;
font-size: 1.3em;
border: none;
border-radius: 50px;
cursor: pointer;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.trust-badge {
margin-top: 30px;
font-size: 0.9em;
opacity: 0.9;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 80px 20px;
}
.problem-section {
background: #f8f9fa;
text-align: center;
}
.problem-section h2 {
font-size: 2.5em;
margin-bottom: 20px;
color: #2d3748;
}
.problems {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}
.problem-card {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.problem-card h3 {
color: #e53e3e;
margin-bottom: 15px;
font-size: 1.5em;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-top: 50px;
}
.feature {
text-align: center;
}
.feature-icon {
font-size: 3em;
margin-bottom: 20px;
}
.feature h3 {
font-size: 1.5em;
margin-bottom: 15px;
color: #2d3748;
}
.pricing-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.pricing-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}
.pricing-card {
background: white;
color: #333;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
position: relative;
}
.pricing-card.featured {
transform: scale(1.05);
border: 3px solid #f59e0b;
}
.badge {
background: #f59e0b;
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8em;
font-weight: 600;
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
}
.price {
font-size: 3em;
font-weight: 700;
margin: 20px 0;
color: #667eea;
}
.price small {
font-size: 0.4em;
color: #666;
}
.feature-list {
text-align: left;
margin: 30px 0;
list-style: none;
}
.feature-list li {
padding: 10px 0;
border-bottom: 1px solid #e2e8f0;
}
.feature-list li:before {
content: "✅ ";
margin-right: 10px;
}
.testimonials {
background: #f8f9fa;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}
.testimonial {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.testimonial-text {
font-style: italic;
margin-bottom: 20px;
color: #4a5568;
}
.testimonial-author {
font-weight: 600;
color: #2d3748;
}
.faq-section {
text-align: center;
}
.faq-list {
max-width: 800px;
margin: 50px auto;
text-align: left;
}
.faq-item {
margin-bottom: 30px;
padding: 30px;
background: white;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.faq-question {
font-size: 1.3em;
font-weight: 600;
margin-bottom: 15px;
color: #667eea;
}
.final-cta {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
padding: 100px 20px;
}
.final-cta h2 {
font-size: 3em;
margin-bottom: 30px;
}
footer {
background: #2d3748;
color: white;
text-align: center;
padding: 40px 20px;
}
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<h1>Web Scraping Made Easy</h1>
<p>Extract data from any website without coding.<br>Try Pro or Enterprise free for 7 days.</p>
<a href="http://localhost:8501" class="cta-button">Start Free Trial →</a>
<div class="trust-badge">✨ No credit card required • Cancel anytime • Full features</div>
</section>
<!-- Problem Section -->
<section class="problem-section">
<div class="container">
<h2>Stop Wasting Time on Manual Data Collection</h2>
<p style="font-size: 1.2em; color: #666; margin-top: 20px;">
Your competitors are automating. Are you still copying and pasting?
</p>
<div class="problems">
<div class="problem-card">
<h3>❌ Manual Copy-Paste</h3>
<p>Spending hours collecting data that changes daily? There's a better way.</p>
</div>
<div class="problem-card">
<h3>❌ Expensive Tools</h3>
<p>Paying $500+/month for features you don't use? Get exactly what you need.</p>
</div>
<div class="problem-card">
<h3>❌ Technical Complexity</h3>
<p>Don't know Python? No problem. Our visual interface does the heavy lifting.</p>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="container">
<h2 style="text-align: center; font-size: 2.5em; margin-bottom: 20px;">Everything You Need to Scrape Smarter</h2>
<div class="features">
<div class="feature">
<div class="feature-icon">🎯</div>
<h3>No Coding Required</h3>
<p>Visual point-and-click interface. If you can browse websites, you can scrape them.</p>
</div>
<div class="feature">
<div class="feature-icon">⚡</div>
<h3>Lightning Fast</h3>
<p>Scrape thousands of pages in minutes. Built-in anti-detection keeps you safe.</p>
</div>
<div class="feature">
<div class="feature-icon">📊</div>
<h3>Multiple Formats</h3>
<p>Export to CSV, Excel, JSON, or SQL. Ready for any analysis tool.</p>
</div>
<div class="feature">
<div class="feature-icon">🔄</div>
<h3>Scheduled Scraping</h3>
<p>Set it and forget it. Daily, weekly, or custom schedules.</p>
</div>
<div class="feature">
<div class="feature-icon">🔌</div>
<h3>API Access</h3>
<p>Integrate with your tools. Full REST API for developers.</p>
</div>
<div class="feature">
<div class="feature-icon">💪</div>
<h3>Unlimited Configs</h3>
<p>Scrape as many websites as you need. No arbitrary limits.</p>
</div>
</div>
</section>
<!-- Pricing Section -->
<section class="pricing-section">
<div class="container">
<h2 style="text-align: center; font-size: 2.5em;">Simple, Transparent Pricing</h2>
<p style="text-align: center; font-size: 1.2em; margin-top: 20px; opacity: 0.95;">
🎁 Start with a 7-day free trial. No credit card required.
</p>
<div class="pricing-cards">
<div class="pricing-card">
<h3 style="font-size: 2em; color: #667eea;">Pro</h3>
<div class="price">$49<small>/month</small></div>
<p style="color: #666; margin-bottom: 20px;">Perfect for small businesses</p>
<ul class="feature-list">
<li>1,000 requests/day</li>
<li>10 scraper configurations</li>
<li>CSV, Excel, JSON export</li>
<li>Scheduled scraping</li>
<li>API access</li>
<li>Custom headers</li>
<li>Email support</li>
</ul>
<a href="http://localhost:8501" class="cta-button" style="width: 100%; display: block; text-align: center; margin-top: 20px;">
Start Free Trial
</a>
</div>
<div class="pricing-card featured">
<span class="badge">MOST POPULAR</span>
<h3 style="font-size: 2em; color: #667eea;">Enterprise</h3>
<div class="price">$199<small>/month</small></div>
<p style="color: #666; margin-bottom: 20px;">For serious data operations</p>
<ul class="feature-list">
<li>Unlimited requests</li>
<li>Unlimited configurations</li>
<li>All formats + SQL</li>
<li>Advanced scheduling</li>
<li>Priority support</li>
<li>Dedicated proxies</li>
<li>Custom integrations</li>
<li>Onboarding call</li>
</ul>
<a href="http://localhost:8501" class="cta-button" style="width: 100%; display: block; text-align: center; margin-top: 20px; background: #667eea; color: white;">
Start Free Trial
</a>
</div>
</div>
<p style="text-align: center; margin-top: 40px; font-size: 1.1em;">
💳 Add payment after your trial • Cancel anytime • Money-back guarantee
</p>
</div>
</section>
<!-- Testimonials -->
<section class="testimonials">
<div class="container">
<h2 style="text-align: center; font-size: 2.5em;">What Our Customers Say</h2>
<div class="testimonial-grid">
<div class="testimonial">
<div class="testimonial-text">
"ScraperPro saved me 10 hours a week. I was manually collecting competitor prices - now it's automated and I can focus on strategy."
</div>
<div class="testimonial-author">
Sarah M. - E-commerce Manager
</div>
</div>
<div class="testimonial">
<div class="testimonial-text">
"Finally, a scraping tool that doesn't require a CS degree. I set up my first scraper in 5 minutes. Game changer."
</div>
<div class="testimonial-author">
Mike R. - Marketing Agency Owner
</div>
</div>
<div class="testimonial">
<div class="testimonial-text">
"The API is fantastic. Integrated with our internal tools in an afternoon. Enterprise tier pays for itself in time saved."
</div>
<div class="testimonial-author">
Jennifer L. - Data Analyst
</div>
</div>
</div>
</div>
</section>
<!-- FAQ -->
<section class="faq-section">
<div class="container">
<h2 style="font-size: 2.5em;">Frequently Asked Questions</h2>
<div class="faq-list">
<div class="faq-item">
<div class="faq-question">How does the free trial work?</div>
<p>Choose Pro or Enterprise, get full access for 7 days. No credit card required to start. On day 7, add payment to continue or let it expire - your choice.</p>
</div>
<div class="faq-item">
<div class="faq-question">Do I need coding skills?</div>
<p>Not at all! Our visual interface lets you point-and-click to configure scrapers. If you're technical, we also have a full REST API.</p>
</div>
<div class="faq-item">
<div class="faq-question">What websites can I scrape?</div>
<p>Any publicly accessible website. We handle JavaScript rendering, pagination, and anti-bot measures automatically.</p>
</div>
<div class="faq-item">
<div class="faq-question">Can I cancel anytime?</div>
<p>Yes! Cancel with one click. No questions asked, no cancellation fees. We also offer a 30-day money-back guarantee.</p>
</div>
<div class="faq-item">
<div class="faq-question">Is my data secure?</div>
<p>Absolutely. Your scraped data is encrypted and stored securely. We never share or sell your data. Period.</p>
</div>
</div>
</div>
</section>
<!-- Final CTA -->
<section class="final-cta">
<h2>Ready to Automate Your Data Collection?</h2>
<p style="font-size: 1.3em; margin-bottom: 40px;">
Join hundreds of businesses saving 10+ hours per week
</p>
<a href="http://localhost:8501" class="cta-button">Start Your Free Trial Now →</a>
<p style="margin-top: 30px; font-size: 1.1em; opacity: 0.9;">
No credit card • 7-day trial • Cancel anytime
</p>
</section>
<!-- Footer -->
<footer>
<p>© 2024 ScraperPro. All rights reserved.</p>
<p style="margin-top: 10px;">
<a href="#" style="color: white; margin: 0 15px;">Privacy Policy</a>
<a href="#" style="color: white; margin: 0 15px;">Terms of Service</a>
<a href="mailto:support@scraperpro.com" style="color: white; margin: 0 15px;">Contact</a>
</p>
</footer>
</body>
</html>