File size: 13,818 Bytes
3e941e3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
06a5ee3
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SocialScraper Pro - Data Ninja Edition</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Space Grotesk', sans-serif;
            overflow-x: hidden;
        }
        
        .vanta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
    </style>
</head>
<body class="bg-gray-900 text-white">
    <div id="vanta-bg" class="vanta-bg"></div>
    
    <!-- Navigation -->
    <nav class="container mx-auto px-6 py-4 flex justify-between items-center">
        <div class="flex items-center space-x-2">
            <i data-feather="activity" class="text-indigo-500"></i>
            <span class="text-xl font-bold gradient-text">SocialScraper Pro</span>
        </div>
        <div class="hidden md:flex space-x-8">
            <a href="#" class="hover:text-indigo-400 transition">Features</a>
            <a href="#" class="hover:text-indigo-400 transition">Pricing</a>
            <a href="#" class="hover:text-indigo-400 transition">Documentation</a>
            <a href="#" class="hover:text-indigo-400 transition">Support</a>
        </div>
        <div class="flex items-center space-x-4">
            <button class="px-4 py-2 rounded-full bg-indigo-600 hover:bg-indigo-700 transition">
                Get Started
            </button>
            <button class="md:hidden">
                <i data-feather="menu"></i>
            </button>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="container mx-auto px-6 py-20 md:py-32">
        <div class="flex flex-col md:flex-row items-center">
            <div class="md:w-1/2 mb-12 md:mb-0">
                <h1 class="text-4xl md:text-6xl font-bold mb-6">
                    <span class="gradient-text">Extract</span> Social Data <br>
                    Like a <span class="gradient-text">Ninja</span>
                </h1>
                <p class="text-xl text-gray-300 mb-8">
                    The most powerful social media scraping tool for researchers, marketers, and data scientists.
                </p>
                <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
                    <button class="px-8 py-3 rounded-full bg-indigo-600 hover:bg-indigo-700 transition flex items-center justify-center pulse-animation">
                        <i data-feather="download" class="mr-2"></i>
                        Download Now
                    </button>
                    <button class="px-8 py-3 rounded-full bg-gray-800 hover:bg-gray-700 transition flex items-center justify-center">
                        <i data-feather="play" class="mr-2"></i>
                        Watch Demo
                    </button>
                </div>
            </div>
            <div class="md:w-1/2">
                <div class="glass-card rounded-2xl p-2 shadow-2xl">
                    <div class="bg-gray-800 rounded-xl p-4">
                        <div class="flex space-x-2 mb-4">
                            <div class="w-3 h-3 rounded-full bg-red-500"></div>
                            <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
                            <div class="w-3 h-3 rounded-full bg-green-500"></div>
                        </div>
                        <div class="bg-gray-900 rounded-lg p-4 font-mono text-sm overflow-x-auto">
                            <span class="text-green-400">$</span> socialscraper --platform twitter --query "#datascience" --limit 1000<br>
                            <span class="text-gray-500">[INFO] Connecting to Twitter API...</span><br>
                            <span class="text-gray-500">[INFO] Scraping 1000 posts...</span><br>
                            <span class="text-green-500">[SUCCESS] Data saved to twitter_data.json</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section class="container mx-auto px-6 py-20">
        <div class="text-center mb-16">
            <h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features</h2>
            <p class="text-xl text-gray-300 max-w-2xl mx-auto">
                Everything you need to collect, analyze, and visualize social media data at scale.
            </p>
        </div>
        
        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
            <!-- Feature 1 -->
            <div class="glass-card rounded-xl p-6 hover:shadow-lg transition">
                <div class="w-12 h-12 rounded-full bg-indigo-500 flex items-center justify-center mb-4">
                    <i data-feather="globe" class="text-white"></i>
                </div>
                <h3 class="text-xl font-bold mb-2">Multi-Platform Support</h3>
                <p class="text-gray-300">
                    Collect data from Twitter, Instagram, Facebook, Reddit, and more with a single tool.
                </p>
            </div>
            
            <!-- Feature 2 -->
            <div class="glass-card rounded-xl p-6 hover:shadow-lg transition">
                <div class="w-12 h-12 rounded-full bg-purple-500 flex items-center justify-center mb-4">
                    <i data-feather="cpu" class="text-white"></i>
                </div>
                <h3 class="text-xl font-bold mb-2">AI-Powered Analysis</h3>
                <p class="text-gray-300">
                    Built-in sentiment analysis, topic modeling, and trend detection.
                </p>
            </div>
            
            <!-- Feature 3 -->
            <div class="glass-card rounded-xl p-6 hover:shadow-lg transition">
                <div class="w-12 h-12 rounded-full bg-blue-500 flex items-center justify-center mb-4">
                    <i data-feather="database" class="text-white"></i>
                </div>
                <h3 class="text-xl font-bold mb-2">Data Export</h3>
                <p class="text-gray-300">
                    Export to JSON, CSV, or directly to your database.
                </p>
            </div>
            
            <!-- Feature 4 -->
            <div class="glass-card rounded-xl p-6 hover:shadow-lg transition">
                <div class="w-12 h-12 rounded-full bg-green-500 flex items-center justify-center mb-4">
                    <i data-feather="shield" class="text-white"></i>
                </div>
                <h3 class="text-xl font-bold mb-2">Privacy Focused</h3>
                <p class="text-gray-300">
                    Ethical scraping with rate limiting and respect for platform TOS.
                </p>
            </div>
            
            <!-- Feature 5 -->
            <div class="glass-card rounded-xl p-6 hover:shadow-lg transition">
                <div class="w-12 h-12 rounded-full bg-yellow-500 flex items-center justify-center mb-4">
                    <i data-feather="code" class="text-white"></i>
                </div>
                <h3 class="text-xl font-bold mb-2">Developer Friendly</h3>
                <p class="text-gray-300">
                    Full API access and extensible plugin system.
                </p>
            </div>
            
            <!-- Feature 6 -->
            <div class="glass-card rounded-xl p-6 hover:shadow-lg transition">
                <div class="w-12 h-12 rounded-full bg-red-500 flex items-center justify-center mb-4">
                    <i data-feather="bar-chart-2" class="text-white"></i>
                </div>
                <h3 class="text-xl font-bold mb-2">Visual Analytics</h3>
                <p class="text-gray-300">
                    Beautiful dashboards to visualize your data insights.
                </p>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="container mx-auto px-6 py-20 text-center">
        <div class="glass-card rounded-2xl p-8 md:p-12 max-w-4xl mx-auto">
            <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Become a Data Ninja?</h2>
            <p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto">
                Join thousands of researchers and marketers who trust SocialScraper Pro for their data needs.
            </p>
            <button class="px-8 py-4 rounded-full bg-gradient-to-r from-indigo-600 to-purple-600 hover:from-indigo-700 hover:to-purple-700 transition text-lg font-bold">
                Get Started for Free
            </button>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 py-12">
        <div class="container mx-auto px-6">
            <div class="flex flex-col md:flex-row justify-between">
                <div class="mb-8 md:mb-0">
                    <div class="flex items-center space-x-2 mb-4">
                        <i data-feather="activity" class="text-indigo-500"></i>
                        <span class="text-xl font-bold gradient-text">SocialScraper Pro</span>
                    </div>
                    <p class="text-gray-400 max-w-xs">
                        The most powerful social media scraping tool for professionals.
                    </p>
                </div>
                
                <div class="grid grid-cols-2 md:grid-cols-3 gap-8">
                    <div>
                        <h4 class="text-lg font-bold mb-4">Product</h4>
                        <ul class="space-y-2">
                            <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
                            <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
                            <li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
                        </ul>
                    </div>
                    
                    <div>
                        <h4 class="text-lg font-bold mb-4">Company</h4>
                        <ul class="space-y-2">
                            <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
                            <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
                            <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
                        </ul>
                    </div>
                    
                    <div>
                        <h4 class="text-lg font-bold mb-4">Legal</h4>
                        <ul class="space-y-2">
                            <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy</a></li>
                            <li><a href="#" class="text-gray-400 hover:text-white transition">Terms</a></li>
                            <li><a href="#" class="text-gray-400 hover:text-white transition">Compliance</a></li>
                        </ul>
                    </div>
                </div>
            </div>
            
            <div class="border-t border-gray-700 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
                <p class="text-gray-400 mb-4 md:mb-0">
                    © 2023 SocialScraper Pro. All rights reserved.
                </p>
                <div class="flex space-x-6">
                    <a href="#" class="text-gray-400 hover:text-white transition">
                        <i data-feather="twitter"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white transition">
                        <i data-feather="github"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white transition">
                        <i data-feather="linkedin"></i>
                    </a>
                </div>
            </div>
        </div>
    </footer>

    <script>
        feather.replace();
        
        // Initialize Vanta.js effect
        VANTA.NET({
            el: "#vanta-bg",
            mouseControls: true,
            touchControls: true,
            gyroControls: false,
            minHeight: 200.00,
            minWidth: 200.00,
            scale: 1.00,
            scaleMobile: 1.00,
            color: 0x3b82f6,
            backgroundColor: 0x111827,
            points: 12.00,
            maxDistance: 22.00,
            spacing: 18.00
        });
        
        // Simple animation for demo purposes
        document.querySelectorAll('.glass-card').forEach((card, index) => {
            card.style.transitionDelay = `${index * 0.1}s`;
        });
    </script>
</body>
</html>